Jump to content

Error in UPDATE query


ThePhpReaper

Recommended Posts

Well, i made a simple website that lets user create new accounts and edit their account information.

But at the edit script, the "UPDATE" query is having some problem.

I tried alot to solve it, but can find any way...

Herez the CODE:

 $query = "UPDATE registration SET firstname = '".$firstname."', WHERE user_id = '" . $_SESSION['user_id'] . "'";
                 mysql_query($query) or die(mysql_error());

Error i am getting:

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 'SET firstname = 'Dave', WHERE user_id = '1'' at line 1

Link to comment
https://forums.phpfreaks.com/topic/229275-error-in-update-query/
Share on other sites

The error you're getting is probably directed to the second comma you have in your query, see an updated query below.

 

$query = "UPDATE registration SET firstname = '".$firstname."' WHERE user_id = '" . $_SESSION['user_id'] . "'";
                 mysql_query($query) or die(mysql_error());

 

This should now work.

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.