Re: MySQL Query Using PHP not working
> $sql = "INSERT INTO 'ProvidersDevices' (UserID, DeviceID, IsLive, sLiveLastUpdated) VALUES (1, '456', 1, '" .$date. "' ") ";
Don't quote identifier names. If they contain chars that are illegal in identifier names, surround them with backticks (`).
In general, when a query elicits an error, have the code echo the query being sent to MySQL, eg ...
echo $sql
before executing it, so you can copy & paste it into the mysql client for debugging.
Subject
Written By
Posted
Re: MySQL Query Using PHP not working
January 11, 2018 11:54AM
Sorry, you can't reply to this topic. It has been closed.
Content reproduced on this site is the property of the respective copyright holders.
It is not reviewed in advance by Oracle and does not necessarily represent the opinion
of Oracle or any other party.