$quantity) { $quantity = (int)$quantity; if ($quantity > 0) { $_SESSION['cart'][$productId] = $quantity; } else { unset($_SESSION['cart'][$productId]); } } header('Location: cart.php'); exit; } ?> Shopping Cart - EcoGrow

Your Shopping Cart

Your cart is empty.

Continue Shopping
$quantity) { $product = null; foreach ($products as $p) { if ($p['id'] == $productId) { $product = $p; break; } } if ($product) { $subtotal = $product['price'] * $quantity; $total += $subtotal; echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; } } ?>
Product Price Quantity Total Action
' . htmlspecialchars($product['name']) . '$' . htmlspecialchars($product['price']) . ''; echo ''; echo '$' . htmlspecialchars(number_format($subtotal, 2)) . 'Remove
Grand Total: $