我在网上商店工作,我尝试在数据库中存储订单。如果用户选择了多个产品,我可以将最新选择的产品存储在数据库中。是否可以一次性存储多个具有不同ID的产品?
我在其他页面上有这个" cart.php"
$pp_checkout_btn = "<a href='pp.php?post=' class='placeraorder'>Placera Order</a>";
if (isset($_SESSION['id'])) {
$postf=$_GET['post']; //
$userid = $_SESSION['id'];
$pris = $price;
$totalsumma = $price * $each_item['quantity'];
$produkt_id = $each_item['item_id'];
$antal = $each_item['quantity'];// I can store many quantity with this var with the same id
$storlek = $each_item['size'];
$färg = $each_item['color'];
mysql_query("INSERT INTO order_postf (produkt_id,userid,storlek,färg,pris,total_pris,antal,date) VALUES ('$produkt_id','$userid','$storlek','$färg','$pris','$totalsumma','$antal',now())")or die(mysql_error());
}
答案 0 :(得分:0)
你可以插入多个这样的记录
insert into your_table (col1, col2)
values ('v1', 'v2'),
('v3', 'v4')