购物车,数量有问题

时间:2016-03-15 09:24:40

标签: php product-quantity

这是一个购物车是工作的那种罚款,但问题是数量,当数量是1我喜欢single_price自动消化:

 $json = $_POST['json'];
            if (json_decode($json) != null) { /* sanity check */
                $file = fopen('myTable.json','w+');
                fwrite($file, $json);
                fclose($file);
                var_dump($file);
    } 

1 个答案:

答案 0 :(得分:0)

我发现concat的问题替换了这个:

$update_qty = "update cart set qty='$qty'";

有了这个:

$update_qty = "update cart set qty='".$qty."';