Jump to content

[SOLVED] MySQL update problem


john6384

Recommended Posts

I am trying to run this query although I get this error:

//Assign the query
$query = "UPDATE webusers SET Name='$name' Initials='$initials' Pass='$password' Email='$email' WHERE ID=$ID";

//Execute query
$result = mysql_query($query);
if(!$result){
	die("Could not update user on database: <br />".mysql_error());
}

Could not update user on database:

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 '(ID=11 Name='Doug' Initials='DB' Pass='pass' Email='[email protected]') WHERE ID=11' at line 1

 

The syntax looks fine.

 

Please help and give reasons for this.

Cheers

Link to comment
https://forums.phpfreaks.com/topic/74791-solved-mysql-update-problem/
Share on other sites

Could not update user on database:

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 '`Initials`='MBs' `Pass`='michelle' `Email`='[email protected]' WHERE `ID`=10' at line 1

 

Thats the error I get now.

Cheers for reply though.

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.