Shopping cart page display
1, modify the shoppingcart.php code:
1, display the product
商品ID | 商品名称 | 购买数量 | 价格 | 操作 |
query($sql); $row = $result->fetch_assoc(); $totalprice += $row["salesprice"] * $value[1]; echo '' . $row['title'] . ''; ?> | 取消 |
总价格:下一步 清空购物车
Save the product information in the cookie Take it out and traverse it to display the product information details
2, as shown below: