Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I cant really figure out whats wrong with this. I used to write the exact same thing and got it working.

$check = mysql_query("SELECT encrypt FROM database WHERE word='$word'") or die(mysql_error());

Error returned is : 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 'database WHERE word='asdaasdasdd'' at line 1

share|improve this question
1  
what is the value of $word ? $word = mysql_real_escape($word); – safarov Mar 26 '12 at 6:11
1  
Did you try escaping with backticks? – Andy Mar 26 '12 at 6:11
1  
Don't use reserved words as identifiers in the first place. – Ken Thompson Mar 26 '12 at 6:14
1  
@Ken There is no reason not to use them. He just needs to enclose them with `. Altough in this case you are right. It seems strange to call a table a database, because it's just not. – Basti Mar 26 '12 at 6:16
1  
@Basti - lol. I will be descriptive on the names from next time. – Kishor Mar 26 '12 at 6:22
show 5 more comments

5 Answers

up vote 9 down vote accepted

DATABASE is a mysql reserved word, eclose it with backticks ``

$check = mysql_query("SELECT encrypt FROM `database` WHERE word='$word'")
                     or die(mysql_error());
share|improve this answer
Thanks for the quick help buddy. That solved it. Added to my knowledge that database is a reserved word. – Kishor Mar 26 '12 at 6:16
@Phil - Yeah, as soon as SO allows me. 5 more mins to go. – Kishor Mar 26 '12 at 6:19

Try backquoting database. It's probably a reserved word.

share|improve this answer
"database" is not probably a reserved word – Phil Mar 26 '12 at 6:15
Done. got the trouble solved. – Kishor Mar 26 '12 at 6:17

Database or Databases is a keyword. See the following link for Reserve words

share|improve this answer

The or die() trick is a very poor choice for several reasons:

  • It's not a very nice way to present the user with an error message.

  • Using for instance the mysql_error() call with it, as many people do, exposes information that should never get output in a production environment

  • You cannot catch the error in any way.

  • You cannot log the error.

  • You cannot control whether it should be output to the screen or not. It's okay to do that in a development environment, but certainly not in a production environment.

  • It prevents you from doing any sort of cleanup. It just ends the script abruptly.

An easy way to implement is :

$result = mysql_query('SELECT foo FROM bar', $db) or trigger_error('Query failed: ' . mysql_error($db), E_USER_ERROR);
share|improve this answer
1  
Point taken buddy. – Kishor Mar 26 '12 at 6:41

Encrypt is a function so, even tho' it is not causing the problem, I would avoid using it as a column name.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.