当我使用此添加到购物车脚本时,我会删除会话中已添加的数量!
但是我希望它添加特定数量加上已经在篮子会话中的数量。
怎么做?
在演示中向右滚动(页面i F **** d up)//
现场演示http://www.sanwebe.com/assets/php-shopping-cart/index.php
以下是我使用的代码
@User.IsInRole("admin") { }
答案 0 :(得分:1)
也许改变 这样:
//found user item in array list, and increased the quantity
$_SESSION["products"] = $product;
要:
//found user item in array list, and increased the quantity
$_SESSION["products"] = $_SESSION["products"] + $product;