Forum Moderators: open
Any ideas as to what's wrong with the following query? Mysql just doesn't give me any info other than 'syntax error'.
UPDATE users WHERE user_id = 4416 SET user_img = 'us.gif';
UPDATE users SET user_img = 'us.gif' WHERE user_id = 4416;
Try: UPDATE users SET user_img = 'us.gif' WHERE user_id = 4416;