如何将会话数组放入 mysql 行?
使用时的会话数组输出print_r($_SESSION['producten'])
:
Array
(
[producten] => Array
(
[0] => Array
(
[product_id] => 3
[aantal] => 2
)
[1] => Array
(
[product_id] => 2
[aantal] => 1
)
)
)
mysql:
$order_ins = "INSERT INTO orders_products (order_id,product_id,product_amount) VALUES
('".$_SESSION['order_id']."', '".$_SESSION['product_id']."','".$_SESSION['aantal']."' )";
mysql_query($order_ins) or die("Ehh..error!?" . mysql_error());
我想要的是“product_id”和“aantal”(意思是荷兰语的数量)将被插入到 mysql 行中。之后可以使用“order_id”过滤产品和金额