aboutsummaryrefslogtreecommitdiff
path: root/public/cart.php
diff options
context:
space:
mode:
Diffstat (limited to 'public/cart.php')
-rw-r--r--public/cart.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/public/cart.php b/public/cart.php
index f953880..34cccbb 100644
--- a/public/cart.php
+++ b/public/cart.php
@@ -48,7 +48,7 @@ EOF;
<div class="products">
<?php do {
global $username;
- $statement = $cursor->prepare("select product.id, product.name, product.price, product.image, cart.count from cart join customer on customer.id = cart.customer join product on product.id = cart.product where customer.name = ?");
+ $statement = $cursor->prepare("select product.id, product.name, product.price, product.image, cart.count from cart join user on user.id = cart.user join product on product.id = cart.product where user.name = ?");
$statement->bind_param("s", $username);
if (!$statement->execute()) break;
$res = $statement->get_result();