此代碼在localhost中完美工作,但是當我將它加載到遠程Web服務器上時,出現警告:單擊確定按鈕後出現錯誤&,I得到這個錯誤:'字段列表'中的未知列'bus_name'。 有什麼幫助嗎?提前致謝。在'字段列表'中獲取此錯誤「未知列'bus_name'」
行動頁:
<?php
include("config.php");
error_reporting("-1");
$bus_name=$_POST['bus_name'];
$bus_no=$_POST['bus_no'];
$ticket_number=$_POST['number'];
$booker_name=$_POST['name'];
$sql="INSERT INTO ticket_details(`bus_name`,`bus_no`,`ticket_number`, `booker_name`)
VALUES('$bus_name','$bus_no','$ticket_number','$booker_name')";
$result=mysql_query($sql);
if($result)
{
echo "<script type=\"text/javascript\">".
"alert('Thank You');".
"location.href='index.php';".
"</script>";
}
else {
echo "<script type=\"text/javascript\">".
"alert('Error');".
"location.href='javascript:index.php';".
"</script>";
}
die(mysql_error());
mysql_close();
?>
檢查了ur表? –
給空間之間「ticket_details('bus_name' ......」 – uvais
那麼很可能意味着正是它說:你沒有在你的餐桌這樣一個領域 –