我想更新购物车中商品的数量
这些是行动:
if(!empty($_GET["action"])) {
switch($_GET["action"]) {
case "add":
if(!empty($_POST["quantity"])) {
$productByCode = $db_handle->runQuery("SELECT * FROM menu WHERE item_code='" . $_GET["code"] . "'");
$itemArray = array($productByCode[0]["item_code"]=>array('name'=>$productByCode[0]["item_name"], 'code'=>$productByCode[0]["item_code"], 'quantity'=>$_POST["quantity"], 'price'=>$productByCode[0]["item_price"]));
if(!empty($_SESSION["cart_item"])) {
if(in_array($productByCode[0]["item_code"],$_SESSION["cart_item"])) {
foreach($_SESSION["cart_item"] as $k => $v) {
if($productByCode[0]["item_code"] == $k)
$_SESSION["cart_item"][$k]["quantity"] = $_POST["quantity"];
}
} else {
$_SESSION["cart_item"] = array_merge($_SESSION["cart_item"],$itemArray);
}
} else {
$_SESSION["cart_item"] = $itemArray;
}
}
break;
case "remove":
if(!empty($_SESSION["cart_item"])) {
foreach($_SESSION["cart_item"] as $k => $v) {
if($_GET["code"] == $k)
unset($_SESSION["cart_item"][$k]);
if(empty($_SESSION["cart_item"]))
unset($_SESSION["cart_item"]);
}
}
break;
case "empty":
unset($_SESSION["cart_item"]);
break;
}
}
这是购物车代码:
<?php
foreach ($_SESSION["cart_item"] as $item){
?>
<tr>
<td><strong><?php echo $item["name"]; ?></strong></td>
<td><?php echo $item["quantity"]; ?></td>
<td><?php echo "₹".$item["price"]; ?></td>
<td><a id="remove" href="index.php?action=remove&code=<?php echo $item["code"]; ?>"><span class="fa fa-times fa-lg" style="color:red;"></span></a></td>
</tr>
<?php
$item_total += ($item["price"]*$item["quantity"]);
}
?>
我需要点击更新按钮之类的内容,以便它可以获取值并更新特定产品数量的会话数组 请帮帮我...
答案 0 :(得分:0)
这是一个非常基本的示例,但您应该为每个操作创建一个函数,以便您可以更轻松地移植购物车。另外,我不确定为什么$_GET
中的switch
和$_POST
中的case()
:
function AddToCart($default = 1)
{
// Set a default quantity (1). Check that the value is set and is number
// Not sure why you are using a get for the code but not for these
// attributes. Should it not be $_GET['quantity']??
$qty = (isset($_POST['quantity']) && is_numeric($_POST['quantity']))? $_POST['quantity']:$default;
// Check that there is a valid numeric itemcode
$item = (isset($_POST['item_code']) && is_numeric($_POST['item_code']))? $_POST['item_code']:false;
// If false, stop
if(!$item)
return;
// Do your product query
$productByCode = $db_handle->runQuery("SELECT * FROM menu WHERE item_code='" . $_GET["code"] . "'");
// Assign the item code
$itmcd = $_GET["code"];
$itemArray['code'] = $itmcd;
$itemArray['name'] = $productByCode[0]["item_name"];
$itemArray['price'] = $productByCode[0]["item_price"];
$itemArray['quantity'] = (isset($_SESSION["cart_item"][$itmcd]))? $_SESSION["cart_item"][$itmcd]['quantity']+$qty : $qty;
$_SESSION["cart_item"][$itmcd] = $itemArray;
}
使用:
if(isset($_GET["action"]) && $_GET["action"] == 'add'))
AddToCart();