我的购物车商品存储在会话中,但我希望将所有商品存储在数据库中。
<?php
if (isset($_POST['order'])) {
$member_id = $_POST['member_id'];
$item_id = $_POST['item_id'];
$item_name = $_POST['item_name'];
$item_price = $_POST['item_price'];
$item_qty = $_POST['item_qty'];
$total = $_POST['total'];
mysql_select_db('shoppingcartdemo', mysql_connect('localhost','root',''))or die(mysql_error());
mysql_query("insert into ordernew (id,item_id,item_name,item_price,item_qty,total,status,member_id) values('','$item_id','$item_name','$item_price','$item_qty','$total','Delivered','$member_id')") or die(mysql_query);
header('location:payment.php');
}
?>
答案 0 :(得分:0)
为您提供一些提示:
$_POST
与$_SESSION
mysql
使用mysqli
或使用PDO
进行sql注入的额外保护。这是了解它的有用链接http://wiki.hashphp.org/PDO_Tutorial_for_MySQL_Developers price
金额。始终根据存储在数据库中的值对其进行验证。 祝你好运,尽可能多地阅读。