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
Warning: mysql_fetch_* expects parameter 1 to be resource, boolean given error

Not much to explain. I am using the code listed above and getting the error listed below. I am pretty clueless about what this error means and would love an explanation.

Warning: mysql_fetch_array() expects parameter 1 to be resource, boolean given in ...

$query = "SELECT id
         FROM table
          WHERE user!= '$username'
          AND reviewed is NULL
          Order By ABS (uploaderrating- $rating) - Case When catagory== '$catagory' Then 1 Else 0 End
          LIMIT 0,1";
    $result = mysql_query($query);
    $row1= mysql_fetch_array($result);
    $id1 = $row1[id];
    $_SESSION['reference1']= $id1;
share|improve this question
It means your sql is wrong. – xdazz Aug 12 '12 at 5:44
3  
catagory== '$catagory' ? i think == is invalid. should use single = – Habib Zare Aug 12 '12 at 5:53

marked as duplicate by DCoder, xdazz, JYelton, Ignacio Vazquez-Abrams, todofixthis Aug 12 '12 at 9:26

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

I discovered the error: I simply had a double == when it should have been a single =.

share|improve this answer
You are right to post the solution here; someone in the future may have this same problem, and adding this to the list of possible problems might greatly help. – JYelton Aug 12 '12 at 6:03

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