<?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
製品表を確認してください。そのテーブルでは Retail_Price が存在しないため、エラーが発生しています。
于 2013-11-09T11:52:41.207 に答える
0
フィールド Retail_Price が製品テーブルに存在しないか、スペルが異なっています。
于 2013-11-09T12:18:40.340 に答える
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 に答える