Jump to content

keep getting error when UPDATE mysql statement plz help.


loshyt

Recommended Posts

ive tried to write the $sql in so many ways and this looks the best and its still not working

and ive checked the correct syntax but still.

 

this is how i wrote:

$sql2 = "UPDATE `tvchaty`.`episodes` SET `showid` = ".($showid).", `epname` = ".($epname).", `season` = ".($season).", `episode` = ".($episode).", `info` = ".($info).", `airdate` = ".($airdate).", `directwatch` = ".($directwatch)." WHERE `episodes`.`id` = ".($id)." LIMIT 1;";

 

 

this is the error:

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 'Prideses, `season` = 6, `episode` = 11, `info` = , `airdate` = 2010-11-01, `dire' at line 1

 

what could be the problem?

 

tnx....

Link to comment
Share on other sites

Always print out the entire query.  If you had done so, you would see that there are no quotes around your string variables:

$sql2 = "UPDATE `tvchaty`.`episodes` SET `showid` = '".$showid."', `epname` = '".$epname."', `season` = '".$season."', `episode` = '".$episode."', `info` = '".$info.'", `airdate` = '".$airdate."', `directwatch` = '".$directwatch.'" WHERE `episodes`.`id` = ".$id." LIMIT 1";

  Also, don't call your sql $sql2, give it a meaningful name.

 

-Dan

Link to comment
Share on other sites

String values should be quoted in the query string, whereas numeric values should not. I've kind of guessed at which fields will hold strings, so you may need to adjust it a bit.

 

$sql2 = "UPDATE `tvchaty`.`episodes` SET `showid` = $showid, `epname` = '$epname', `season` = $season, `episode` = $episode, `info` = '$info', `airdate` = '$airdate', `directwatch` = '$directwatch' WHERE `episodes`.`id` = $id LIMIT 1"; 

Link to comment
Share on other sites

wow thanks guys @Pikachu2000 youve guessed correctly and now i think i will quote everything...

and @ManiacDan i didnt call it in a meaningful name becuse its a second $sql in a page that update

so i could not go wrong with what it does..

 

 

thanks again to you two...

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.