我一直收到错误: –
“You have an error in your sql Syntax; check the manual that
corresponds to your MariaDB server version for the right Syntax to use
near ‘Password=’evertonblues’ Forename=’Josh’ Surname=’Edmondson’
Date of Birth
=’199′ at line 1″
运行更新查询时出错.
$result = MysqLi_query($con, "UPDATE Users SET Username='".$newUsername."' Password='".$newPassword."' Forename='".$newForename."' Surname='".$newSurname."' `Date of Birth`='".$newDateofBirth."' Address='".$newAddress."' `Post Code`='".$newPostcode."' Email='".$newEmail."' `Phone Number`='".$newPhonenumber."' WHERE `User ID`='".$newUserid."';");
解决方法:
你忘记了一堆逗号:
..snip... SET Username='".$newUsername."' Password='".$newPassw
^-- and many others