フォームを送信すると、次のエラーが表示されます。
Can't added a new post. Incorrect integer value: '' for column 'aid' at row 1
PHP コード:
$insert = mysql_query("INSERT INTO brt_articles VALUES( '', '$post_title', '$des',
'$date', '$org_date')");
if($insert)
{
echo "<font color=green>Successfully added a new article.</font>";
header("Refresh:3; url=allbrtarticle.php");
}
else
{
echo "<font color=red>Can't added a new post</font>" .
mysql_error();
}
私のローカルホストでは大丈夫です。しかし、サーバーでエラーメッセージが表示されるのはなぜですか?