php – 您的SQL语法有错误;查看与MariaDB服务器版本对应的手册,以获取正确的语法

我一直收到错误: –

“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

相关文章

统一支付是JSAPI/NATIVE/APP各种支付场景下生成支付订单,返...
统一支付是JSAPI/NATIVE/APP各种支付场景下生成支付订单,返...
前言 之前做了微信登录,所以总结一下微信授权登录并获取用户...
FastAdmin是我第一个接触的后台管理系统框架。FastAdmin是一...
之前公司需要一个内部的通讯软件,就叫我做一个。通讯软件嘛...
统一支付是JSAPI/NATIVE/APP各种支付场景下生成支付订单,返...