我想完成一個使用php的SQL插入查詢。我與返回的錯誤是: SCREAM:錯誤抑制忽略 解析錯誤:語法錯誤,意想不到的T_STRING在C:\ WAMP \ WWW \上線標誌\ db.php中28PHP MySQL插入問題
我使用WAMP和我已經在php myadmin中直接測試了查詢,並且它工作正常。我不知道問題是什麼。
在此先感謝。
<?php
//variables for db
$username = "root";
$password = "";
$hostname = "127.0.0.1";
$dbname = "site";
//connection to the database
$con = mysql_connect($hostname, $username, $password);
if($con == FALSE)
{
echo 'Cannot connect to database' . mysql_error();
}
mysql_select_db($dbname, $con);
mysql_query("INSERT INTO users (full_name, first_name, dob, star_sign) VALUES ("test","test", "test", "test");";
?>