我正在尝试在我的项目中实现购物车。我找到了一个教程,一切正常,但是当我点击“place oder”时,它会在下表中插入一条重复的记录:customers,orders,order_detail。
<?php
include("includes/db.php");
include("includes/functions.php");
if($_REQUEST['command']=='update'){
$name=$_REQUEST['name'];
$email=$_REQUEST['email'];
$address=$_REQUEST['address'];
$phone=$_REQUEST['phone'];
$result=mysql_query("insert into customers values('','$name','$email','$address','$phone')");
$customerid=mysql_insert_id();
$date=date('Y-m-d');
$result=mysql_query("insert into orders values('','$date','$customerid')");
$orderid=mysql_insert_id();
$max=count($_SESSION['cart']);
for($i=0;$i<$max;$i++){
$pid=$_SESSION['cart'][$i]['productid'];
$q=$_SESSION['cart'][$i]['qty'];
$price=get_price($pid);
mysql_query("insert into order_detail values ($orderid,$pid,$q,$price)");
}
die('Thank You! your order has been placed!');
}
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Billing Info</title>
<script language="javascript">
function validate(){
var f=document.form1;
if(f.name.value==''){
alert('Your name is required');
f.name.focus();
return false;
}
f.command.value='update';
f.submit();
}
</script>
</head>
<body>
<form name="form1" onsubmit="return validate()">
<input type="hidden" name="command" />
<div align="center">
<h1 align="center">Billing Info</h1>
<table border="0" cellpadding="2px">
<tr><td>Order Total:</td><td><?php echo get_order_total()?></td></tr>
<tr><td>Your Name:</td><td><input type="text" name="name" /></td></tr>
<tr><td>Address:</td><td><input type="text" name="address" /></td></tr>
<tr><td>Email:</td><td><input type="text" name="email" /></td></tr>
<tr><td>Phone:</td><td><input type="text" name="phone" /></td></tr>
<tr><td> </td><td><input type="submit" value="Place Order" /></td></tr>
</table>
</div>
</form>
</body>
</html>
希望有人可以提供建议。我查看了代码,但是我找不到导致这种行为的原因。
答案 0 :(得分:2)
关闭袖带,您的验证功能以及表单提交。在验证中,更改f.submit();返回true;
答案 1 :(得分:0)
当您提交if($ _ REQUEST ['command'] =='update')将为true并且将尝试插入时,可以查看您的代码以便用户保存事务的两倍cos验证cos数据。 另一个原因可能是用户刷新页面或多次单击上传按钮。因此,当插入完成时,你可能想要取消设置$ _REQUEST ['command']。 如果有效,请告诉我们。 (如果正确则标记为答案)
答案 2 :(得分:0)
在您的情况下,我认为您会想要使用其他验证技术。 就像我之前说的那样,你的代码是这样编写的,当用户点击“下订单”按钮时,会触发验证(javascript),产生一个警告声明并仍然发送一条消息。我已经修改了更好的验证代码解决方案(如果有效,则标记为正确答案)
<script language="javascript">
function validate(){
var f=document.form1;
if(f.name.value==''){
alert('Your name is required');
f.name.focus();
return false;
}
else
{
f.command.value='update';
f.submit();
}
}
</script>
答案 3 :(得分:0)
感谢所有宝贵的回复和帮助,我通过从代码中删除以下代码来解决它并且它有效。
f.submit();