:: **Zploit** v1.0 | Current Path: **/home/kreativepixelz/www/demo/jdc_studio/**
:: Editing File: cart_ajax_view.php
<?php include('cart_functions.php'); if (!empty($_SESSION['cart'])) { foreach ($_SESSION['cart'] as $id => $item) { ?> <div class="mini-cart-item d-flex mb-2"> <img src="uploads/products/<?php echo $item['image']; ?>" width="50"> <div class="ms-2"> <h6><?php echo $item['name']; ?></h6> <small>Qty: <?php echo $item['qty']; ?></small><br> <small>₹<?php echo $item['price']; ?></small> </div> </div> <?php } echo "<hr>"; echo "<strong>Total: ₹" . number_format(getCartTotal(),2) . "</strong>"; } else { echo "<p>Cart is empty</p>"; }