Jump to content

[php] Edit single column in database returns false


mikk809h

Recommended Posts

Hello Pro's!

 

 

Im making a webpage, where i post a license key to it, and then the webpage has to edit the column "unlock" in the database "register_advlock" but. when debugging its returning false

 
$res = mysql_query("UPDATE register_advlock SET unlock='false' WHERE license_key='$key' AND unlock='true'", $con); -- somehow this returns false (connection to database is succesfully done)
    if ($res) {
     echo 'true';
    } else {
     echo 'false';
    }

but when doing or die(mysql_error()) after the mysql query it returns:

"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 'unlock='false' WHERE license_key='c83df0043dc323ae1ac1c62e24ab86871cc4cb36568416' at line 1"

 

 

Thanks in Advance

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.