Initial commit

This commit is contained in:
Local Administrator
2025-04-18 10:32:42 +02:00
commit b83134aca3
29643 changed files with 3045897 additions and 0 deletions

12
view_cart.php Normal file
View File

@@ -0,0 +1,12 @@
<?php
session_start();
// Check if the cart exists in the session
if (isset($_SESSION['cart']) && !empty($_SESSION['cart'])) {
echo '<pre>';
print_r($_SESSION['cart']); // Display cart contents in a readable format
echo '</pre>';
} else {
echo 'Cart is empty.';
}
?>