Jump to content

[SOLVED] Something wrong with my syntax!?


bobleny

Recommended Posts

$sql = "UPDATE `options` SET `set` = '1' WHERE `name` = 'signup'";

 

The above will work.  By the way, using reserved words as field names and being forced to use backticks all the time is not a very good practice.

Link to comment
Share on other sites

The above will work.  By the way, using reserved words as field names and being forced to use backticks all the time is not a very good practice.

 

Hmm... Could you explain?

I'm not sure what you mean by "reserved words".

I thought you where supposed to use "backticks"?

Link to comment
Share on other sites

Using MySQL reserved words for table names or field names is a very bad practice.  Using backticks is a sloppy work-around for scripts where reserved words have been used for table names or field names.  Avoid the problem and the backticks by checking the list of MySQL reserved words ... in the manual.

 

http://dev.mysql.com/doc/refman/5.0/en/reserved-words.html

 

Don't confuse those awful `backticks` with perfectly good 'quotes'.

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.