<?php
if(isset($_POST['insert']))
{
echo $insert="insert into products (id,Product,Form,Strength,Generic_Name,Pack_Size,Retail_Price,Trade_Price) values
('','".$_POST['Product']."','".$_POST['Form']."','".$_POST['Strength']."','".$_POST['Generic_Name']."','".$_POST['Pack_Size']."','".$_POST['Retail_Price']."','".$_POST['Trade_Price']."')";
$query_insert=mysql_query($insert);
if($query_insert)
{
$msg2="Inserted Successfully" or die(mysql_error());
}
else
{
$msg2="Product already exist";
echo mysql_error();
}
}
?>
问问题
72 次
3 回答
0
删除id
列和它null
的值,假设它是整数值并且是auto_increment
<?php
if(isset($_POST['insert']))
{
echo $insert="insert into products (Product,Form,Strength,Generic_Name,Pack_Size,Retail_Price,Trade_Price) values
('".$_POST['Product']."','".$_POST['Form']."','".$_POST['Strength']."','".$_POST['Generic_Name']."','".$_POST['Pack_Size']."','".$_POST['Retail_Price']."','".$_POST['Trade_Price']."')";
$query_insert=mysql_query($insert);
if($query_insert)
{
$msg2="Inserted Successfully" or die(mysql_error());
}
else
{
$msg2="Product already exist";
echo mysql_error();
}
}
?>
于 2013-11-09T11:53:33.983 回答
0
检查您的产品表。在该表中,Retail_Price 不会退出,因此您会收到错误消息。
于 2013-11-09T11:52:41.207 回答
0
产品表中不存在字段 Retail_Price 或拼写不同。
于 2013-11-09T12:18:40.340 回答