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

Possible Duplicate:
PHP: Warning: sort() expects parameter 1 to be array, resource given

I'm getting this error on this line:

mysql_query('SELECT * FROM keys WHERE left > 0');

share|improve this question
Can you edit this to remove the automated message and provide all the details we need to let us help you... – gbn Jan 2 '12 at 12:53
This is like showing nothing! You need to add more code, error you are getting and preferably structure of that table. – Eugene Jan 2 '12 at 12:54
This isn't a line you get this error, this message is from one of the lines next to this one. – Juicy Scripter Jan 2 '12 at 12:55

marked as duplicate by casperOne Jul 13 '12 at 15:12

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

1 Answer

up vote 10 down vote accepted

Both fields keys and left are mysql reserved word so that you have to use backticks like this

mysql_query('SELECT * FROM `keys` WHERE `left` > 0');

Better to write it with the trigger_error and mysql_error. this will produce the actual mysql error if any

mysql_query('SELECT * FROM `keys` WHERE `left` > 0') or trigger_error(mysql_error());
share|improve this answer
lol thx man u saved me a lotta research – user1119096 Jan 2 '12 at 12:59
And you should always remember to test the returned value for FALSE, which tells you that there was a problem with executing the database query – Mark Baker Jan 2 '12 at 13:03

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