Jump to content

[SOLVED] More Update problems!!


almightyegg

Recommended Posts

$update = mysql_query("UPDATE ranks (`name`, `color`, `mod`, `invite`, `ban`, `give`, `edit`, `kick`, `changerank`, `editrank`)
	VALUES('$name', '$color', '$mod', '$invite', '$ban', '$give', '$edit', '$kick', '$changerank', '$editrank') WHERE society='$id' AND rank='$rank'") or die(mysql_error());

 

it errors: 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 '(`name`, `color`, `mod`, `invite`, `ban`, `give`, `edit`, `kick`, `changerank`, ' at line 1

Link to comment
https://forums.phpfreaks.com/topic/63940-solved-more-update-problems/
Share on other sites

I still get the error :(

$update = mysql_query("UPDATE ranks SET name='$name',color='$color',mod='$mod',invite='$invite',ban='$ban',give='$give,edit='$edit,kick='$kick',changerank='$changerank',editrank='$editrank' WHERE society='$id' and rank='$rank'") or die(mysql_error());

 

Maybe it's because of my WHERE queries? As I have 2 of them...?

$update = mysql_query("UPDATE ranks SET name='{$name}',color='{$color}',mod='{$mod}',invite='{$invite}',ban='{$ban}',give='{$give}',edit='{$edit}',kick='{$kick}',changerank='{$changerank}',editrank='{$editrank}' WHERE society='{$id}',rank='{$rank}'") or die(mysql_error());

 

This is where I'm at now, still get this:

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 'mod='Yes',invite='No',ban='Yes',give='Yes',edit='No',kick='22',changerank='0',ed' at line 1

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.