Quantity Not adjusting

前端 未结 2 1302
南旧
南旧 2020-12-12 08:14

I am trying to adjust the quantity of an item when a user enters the quantity and click on Update but I am having a problem getting it to work. When you end the quantity and

2条回答
  •  隐瞒了意图╮
    2020-12-12 08:40

    you do not have to loop through $_SESSION["cart_array"] if you already know the id. this will give you are rough idea of what to do. it is easy to understand and change to your needs!

    $itemid,'size'=>$size,'quantity'=>$quantity); 
    }
    
    print_r($_SESSION["cart_array"]);
    ?>
    
    

    item 1 - s=

    item 2

    you can learn alot from here programmers bible

提交回复
热议问题