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:
PHP Error: mysql_fetch_array() expects parameter 1 to be resource, boolean given

So heres what my error is:

Warning: mysql_fetch_row() expects parameter 1 to be resource, boolean given in /home/content/12/8781812/html/internal/domain/property/process.php on line 17

The code is:

function checkTOS($username){
    include("includes/opendb.php");

    $user2check = mysql_real_escape_string($_POST['username']);
    $query = "SELECT * FROM user WHERE username=".$user2check;
    $result = mysql_query($query);
    while($row = mysql_fetch_row($result)){
        $TOS = $row[11];
        }
 if($TOS == 1){
        return true;
    }else{
        return false;
    }

 }

Line 17 is:

while($row = mysql_fetch_row($result)){

This is basically checking to see if the user accepted the terms of service in the main user db.

EDIT:

So I fixed it but now I get nothing when I try to print my row... Heres the new code.

function checkTOS($preusergrab){
    include("includes/opendb.php");

    $query = "SELECT * FROM users WHERE username='".$preusergrab."'";
    $result = mysql_query($query) or die(mysql_error());

    while($row = mysql_fetch_row($result)){
        $TOS = $row[11];
        }

        // echo $query;
        print_r($row);
        die();
share|improve this question
You have to enclose the value in single quotes, in your query. ie, $query = "SELECT * FROM user WHERE username='".$user2check."'"; – Akhilesh B Chandran Mar 13 '12 at 15:31
@Rook what is wrong with this then? – JD Audi Mar 13 '12 at 15:35
1  
@JD Audi You clearly don't understand the basics of what a quote mark is and why we need them. By extension you don't have a clue what mysql_real_escape_string does and why its used in your query. Use parametrized quires like PDO or ADOB. – Rook Mar 13 '12 at 15:43
1  
use parametrized queries, which is what i said in my post. God damn it. – Rook Mar 13 '12 at 15:50
2  
stackoverflow.com/… 5,000+ duplicates. google.com/… 3.6 million. – Mike B Mar 13 '12 at 16:02
show 12 more comments

marked as duplicate by jprofitt, Rook, webbiedave, Mike B, bmargulies Mar 14 '12 at 0:29

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.

6 Answers

You've forgotten quotes around your $username in the query string, causing the username to be treated as a fieldname which does not exist. The query fails, returns a boolean false, which you then blindly attempt to use in the fetch call, triggering your error.

$query = "SELECT * FROM user WHERE username='".$user2check . "'";
                                            ^--           ^^^^^^---missing

If you had even barebones minimal error handling, you'd have seen the error:

$result = mysql_query($query) or die(mysql_error());
share|improve this answer

Your query failed. That is why it is a boolean.

$result = mysql_query($query);
if ($result === FALSE) {
  die("My query failed : " . mysql_error());
}
share|improve this answer
1  
Don't output a fixed string for the error message. It's utterly useless for figuring out what the problem is. ALWAYS output the real error message while developing/debugging: ... or die(mysql_error()). – Marc B Mar 13 '12 at 15:32

You need to quote your username in the query:

$query = "SELECT * FROM user WHERE username='".$user2check."'";

As it is now, you have an invalid sql query.

share|improve this answer

if the query is unsuccessful mysql_query returns a boolean ... replace

$result = mysql_query($query);

with :

$result = mysql_query($query);
if (!$result) {
    die('Invalid query: ' . mysql_error());
}
share|improve this answer

I think that the query wasn't ok and so there was an error and mysql_query returned false, that's why you have a boolean

share|improve this answer

Read your error:

mysql_fetch_row() expects parameter 1 to be resource, boolean given

So it means $result is a boolean. Which happen when mysql_query had an error. Which in turn mean that your SQL is wrong.

"SELECT * FROM user WHERE username='".$user2check."'";

Should work better.

share|improve this answer

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