这是一个购物车是工作的那种罚款,但问题是数量,当数量是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);
}
答案 0 :(得分:0)
我发现concat的问题替换了这个:
$update_qty = "update cart set qty='$qty'";
有了这个:
$update_qty = "update cart set qty='".$qty."';