自己想的办法把他们整合到一个表格里面,想问大神有没有其他办法谢谢!!
处理代码:
<?php
$conn = @mysql_connect("localhost","root","");
if (!$conn){ die("连接数据库失败:" . mysql_error());}
mysql_select_db("call400");
mysql_query("set names 'utf8'");
$sql = "INSERT INTO order_lists (client,telphone,date,productid,amount,money,manager,state_list,state_pay,state_post,state_bill,address,beizhu,username)
VALUES
('$_POST[client]','$_POST[telphone]',now(),'$_POST[productname]','$_POST[amount]','$_POST[money]','$_POST[manager]','$_POST[state_list]','$_POST[state_pay]','$_POST[state_post]','$_POST[state_bill]','$_POST[address]','$_POST[beizhu]','{$_SESSION['username']}')"; //插入数据修改订单表,完成添加订单。
$sql="update products set kucun=kuncun-$_POST[amount]
where
productname=$_POST[productname]";
//修改产品表里面库存数量
//exit($sql); //退出程序并打印 SQL 语句,用于调试
if(!mysql_query($sql,$conn)){echo "添加数据失败:".mysql_error();} else {echo "<script>alert('下单成功');history.go(-2);</script>";}?>
现在两个sql语句只能运行一个,求大神有其他办法运行两个吗?还需要粘贴什么资料说一下马上贴出来!!
再次感谢!
处理代码:
<?php
$conn = @mysql_connect("localhost","root","");
if (!$conn){ die("连接数据库失败:" . mysql_error());}
mysql_select_db("call400");
mysql_query("set names 'utf8'");
$sql = "INSERT INTO order_lists (client,telphone,date,productid,amount,money,manager,state_list,state_pay,state_post,state_bill,address,beizhu,username)
VALUES
('$_POST[client]','$_POST[telphone]',now(),'$_POST[productname]','$_POST[amount]','$_POST[money]','$_POST[manager]','$_POST[state_list]','$_POST[state_pay]','$_POST[state_post]','$_POST[state_bill]','$_POST[address]','$_POST[beizhu]','{$_SESSION['username']}')"; //插入数据修改订单表,完成添加订单。
$sql="update products set kucun=kuncun-$_POST[amount]
where
productname=$_POST[productname]";
//修改产品表里面库存数量
//exit($sql); //退出程序并打印 SQL 语句,用于调试
if(!mysql_query($sql,$conn)){echo "添加数据失败:".mysql_error();} else {echo "<script>alert('下单成功');history.go(-2);</script>";}?>
现在两个sql语句只能运行一个,求大神有其他办法运行两个吗?还需要粘贴什么资料说一下马上贴出来!!
再次感谢!