내가 MySQL의에서이 오류가 점점 오전 : 여기MySQL의 오류 : 'SQL 구문에 오류가, 오른쪽 구문 MySQL 서버 버전에 해당하는 설명서를 확인 "
You have an error in your SQL syntax; check the manual that corresponds to
your MySQL server version for the right syntax to use near 'Details
(title, first, last, NRIC, po' at line 1
코드입니다 :
<?php
$link = mysql_connect("localhost", "root", "");
if (!$link) { die('Could not connect: ' . mysql_error()); }
$db_selected = mysql_select_db(Membership, $link);
if (!$db_selected) { die('Can\'t use' . Membership . ':' . mysql_error()); }
$value1 = $_POST["title"];
$value2 = $_POST["first"];
$value3 = $_POST["last"];
$value4 = $_POST["NRIC"];
$value5 = $_POST["birthdate"];
$value6 = $_POST["birthmonth"];
$value7 = $_POST["birthyear"];
$value8 = $_POST["address"];
$value9 = $_POST["postal"];
$value10 = $_POST["genderSelect"];
$value11 = $_POST["contact"];
$value12 = $_POST["email"];
$value13 = $_POST["enter"];
$value14 = $_POST["password"];
$value15 = $_POST["Updates"];
$value16 = $_POST["Terms"];
$value17 = $_POST["submit_but"];
$value18 = $_POST["status"];
$sql = "INSERT INTO Member Details (title, first, last, NRIC, birthdate, birthmonth, birthyear, address, postal, genderSelect, contact, email, enter, password, Updates, Terms, submit_but, status) VALUES ('$value', '$value2', '$value3', '$value4', '$value5', '$value6', '$value7', '$value8', '$value9', '$value10', '$value11', '$value12', '$value13', '$value14', '$value15', '$value16', '$value17', '$value18')";
if (!mysql_query($sql)){ //The error is thrown here
die('Error: ' . mysql_error());
}
mysql_close();
?>
당신 하려고 생각하고, 당신이 원하는 것이라고 생각하는 것에 대한 조언을하는 대신, "지침을 읽으십시오"라고 말합니다. 그래서 ... 설명서를 읽으십시오 : http://dev.mysql.com/doc/refman/5.0/en/select.html –
@EricLeschinski 그것은 단지 의견 이었지만 내 문제가 무엇인지 깨닫게했습니다. 필드 이름은 MSSQL에서는 유효하지만 MySQL에서는 예약어입니다. –