我正在尝试为我的购物车制作一个数量框,但不知道如何将值存储在我的数据库中。
<?php
$db = mysqli_connect('localhost', 'root', '', 'store');
$select_product = mysqli_query($db, "SELECT * FROM cart WHERE id = 0");
$select_product_values = mysqli_fetch_assoc($select_product);
$product_quantity = select_product_values['quantity'];
echo "<input type='text' maxlength='2' name='quantity' value=".$product_quantity." class='quantity_box'/>";
echo "<form action='checkout.php' method='post'><button type='submit' id='checkout'>Checkout</button></form>";
mysqli_close($db);
?>
结帐时最简单的方法是什么update
?value
quantity