Hi ! I need your help to change the item quantity in the cart.I thought to use a button “update” and change the total price only that item. I attach the source:
<?php if(!empty($_SESSION[“cart”]))
{
$total = 0;
foreach($_SESSION[“cart”] as $keys => $values)
{
?>
<?php
$total = $total + ($values[“item_quantity”]*$values[“product_price”]);
}
$totalI = 0;
foreach($_SESSION[“cart”] as $keys => $values)
{
$totalI = $totalI + ($values[“item_quantity”] );
}
?>