-1
下面的函數是推車網頁上,在用戶已經添加的產品從以前的產品頁面。問題是我需要多維數組來更新購物車中的數量以添加相同的產品代碼。PHP會話更新的產品,如果ID已經在會議
有人能幫助我,如果語句,因此當同一產品代碼添加量的增加添加?
很喜歡這個答案我卻加入購物車是不同的。 PHP Sessions shopping cart: update product if it's already id the session
function AddToCart()
{
$cart = isset($_SESSION['cart']) ? $_SESSION['cart'] : '';
$itemcount = isset($_SESSION
['itemcount']) ? $_SESSION['itemcount'] : 0;
{
$i = array_search($_POST['productcode'], $cart[PRODUCTCODE]);
$cart[PRODUCTCODE] [$itemcount] = $_POST['productcode'];
$cart[PRODUCTNAME] [$itemcount] = $_POST['productname'];
$cart[QUANTITY][$itemcount] = intval($_POST['quantity']);
$cart[PRICE][$itemcount] = $_POST['price'];
$itemcount = $itemcount + 1;
if(strlen($error) == 0) {
$_SESSION['cart'] = $cart;
$_SESSION['itemcount'] = $itemcount;
}
return $error;
}
什麼變量是IDX? – paul
找到匹配的數組索引。這與您的itemcount相似。 – OffTheBricks
香港專業教育學院增加了錯誤 注意:未定義不斷進行產品的使用 - 在 – paul