Jump to content

[SOLVED] MySQL throws an error on a simple query...


mattal999

Recommended Posts

Ok so, this is the code:

 

mysql_query('UPDATE imuzic_mp3 SET valid=\'-2\', last_checked=\''.date('Y-m-d H:i:s').'\' check_now=check_now+1 WHERE id=\''.$mp3['id'].'\'') or die(mysql_error());

And this is the result:

 

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 'check_now=check_now+1 WHERE id='36'' at line 1

 

Any ideas? The query is simple. It just throws an error for no reason...

Link to comment
Share on other sites

forgot a comma.

 

mysql_query('UPDATE imuzic_mp3 SET valid=\'-2\', last_checked=\''.date('Y-m-d H:i:s').'\', check_now=check_now+1 WHERE id=\''.$mp3['id'].'\'') or die(mysql_error());

 

Damn. I completely missed that. I swear I hit the comma key ::)

 

Thanks anyway.

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.