添加项目数量而不是替换

时间:2015-08-13 13:24:05

标签: php shopping-cart

当我使用此添加到购物车脚本时,我会删除会话中已添加的数量!

但是我希望它添加特定数量加上已经在篮子会话中的数量。

怎么做?

在演示中向右滚动(页面i F **** d up)//

现场演示http://www.sanwebe.com/assets/php-shopping-cart/index.php

以下是我使用的代码

@User.IsInRole("admin") { }

1 个答案:

答案 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;