Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Possible Duplicate:
mysql_fetch_array() expects parameter 1 to be resource, boolean given in select

I have this mysql query--

$mycms_query="SELECT * FROM `admin` WHERE `login`=`admin`";
$mycms_row=mysql_query($mycms_query);
echo mysql_error();
while($mycms_show=mysql_fetch_array($mycms_row)){
echo $mycms_show[passwd];
}

But when I run it it shows me this--

Unknown column 'admin' in 'where clause'

Warning: mysql_fetch_array() expects parameter 1 to be resource, boolean given in C:\xampp\htdocs\mycms_res\scripts\php\mycms_functions.php on line 38

share|improve this question

marked as duplicate by casperOne Aug 6 '12 at 11:25

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.

2 Answers

up vote 3 down vote accepted
$mycms_query="SELECT * FROM `admin` WHERE `login`='admin'";

When you use quotes like `, MySQL thinks you want a column.

So, generally speaking, you can do:

SELECT * FROM `admin` WHERE `login`='admin';
SELECT * FROM `admin` WHERE `login`="admin";

but when you do:

SELECT * FROM `admin` WHERE `login`=`admin`

you want MySQL to compare two columns in where condition -> login and admin (which you obviously don't have).

Additionally, bear in mind that when using PostgreSQL, you cannot use " operator, as it will have the same meaning as ` in MySQL.

share|improve this answer
Thanks it worked! – Jack Billy Mar 2 '11 at 7:50
Thanks for that advice! – Jack Billy Mar 2 '11 at 7:57

You must use this

$mycms_query="SELECT * FROM `admin` WHERE `login`= 'admin'";

` is used to represent column name.

share|improve this answer
Thanks it worked! – Jack Billy Mar 2 '11 at 7:51

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