0

私はウェブショップで働いており、注文をデータベースに保存しようとしています。ユーザーが複数の製品を選択した場合、最後に選択した製品をデータベースに保存できます。1 回のクリックで異なる 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()); 


    }
4

1 に答える 1

0

このように複数のレコードを挿入できます

insert into your_table (col1, col2)
values ('v1', 'v2'),
       ('v3', 'v4')
于 2012-11-15T19:57:55.963 に答える