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

I am trying to select data from a table but get this error message:

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

This is my code:

$username = $_POST['username'];
$password = $_POST['password'];
$result = mysql_query('SELECT * FROM Users WHERE UserName LIKE $username');

while($row = mysql_fetch_array($result))
{
    echo $row['FirstName'];
}
share|improve this question
3  
you can get more useful eroor msg using:: QUERY or die(mysql_error()); – nik Jun 4 '10 at 10:26
21  
Also the obligatory note: Your code is prone to SQL injection. You should validate and/or escape the user input. Have a look at mysql_real_escape_string. Never trust user data. – Felix Kling Jun 4 '10 at 10:26
2  
@JohnConde,your question is a duplicate one, & not this question. – RAS Jul 27 '12 at 6:20
1  
not a duplicate. please see the positive point not a negative point.good work @FelixKling. – pratik Oct 22 '12 at 7:13
1  
Hi, would you mind changing the accepted answer to scompt.com's one which explains what is generally to do when encountering this problem? Your question is being used as a reference question to close new ones as duplicate of, and this would be very helpful. Thanks! – Pekka 웃 Mar 12 at 21:03
show 2 more comments

16 Answers

up vote 60 down vote accepted

Check $result before passing it to mysql_fetch_array. You'll find that it's false because the query failed. See the mysql_query documentation for possible return values and suggestions for how to deal with them.

$username = $_POST['username'];
$password = $_POST['password'];
$result = mysql_query("SELECT * FROM Users WHERE UserName LIKE '$username'");

if($result === FALSE) {
    die(mysql_error()); // TODO: better error handling
}

while($row = mysql_fetch_array($result))
{
    echo $row['FirstName'];
}

This example is only to illustrate what should be done (error handling), not how to do it. Production code shouldn't use or die when outputting HTML, else it will (at the very least) generate invalid HTML. Also, database error messages shouldn't be displayed to non-admin users, as it discloses too much information.

share|improve this answer
1  
Right, but using a die() if the query fails is a little to much. – Kau-Boy Jun 4 '10 at 10:28
9  
I was going to design an entire error handling mechanism for the OP, but decided that might be beyond the scope of my answer. – scompt.com Jun 4 '10 at 10:29
3  
+1, but shouldn't the $username be enclosed in single-quotes in order to be a valid string literal for the LIKE operator? Also is it worth pointing out the SQL injection risk with this pattern? – Sepster Apr 23 at 12:49
@scompt.com Yes it's also covered in several other answers. I guess I was just making the point that since this is the accepted answer on a high visibility question, in addition to the (excellent) advice about how to properly catch errors in future, it should (IMHO) actually answer the specific question (ie explain why there's an error in this case). – Sepster Apr 23 at 22:17
1  
I've updated the answer with your fixes – scompt.com May 12 at 2:23
show 1 more comment

This error message is displayed when you have an error in your query and caused it to fail. Note: this error does not appear if no rows are affected by your query. Only a query with an invalid syntax will generate this error.

Troubleshooting Steps

  • Make sure you have your development server configured to display all errors. You can do this by placing this at the top of your files or in your config file: error_reporting(-1);. If you have any syntax errors this will point them out to you.

  • Use mysql_error(). mysql_error() will report any errors MySQL encountered while performing your query.

Sample usage:

mysql_connect($host, $username, $password)or die("cannot connect"); 
mysql_select_db($db_name)or die("cannot select DB");

$sql = "SELECT * FROM table_name";
$result = mysql_query($sql);
if (false === $result) {
    echo mysql_error();
}
  • Run your query from the MySQL command line or a tool like phpMyAdmin. If you have a syntax error in your query this will tell you what it is.

  • Make sure your quotes are correct. A missing quote around the query or a value can cause a query to fail.

  • Make sure you are escaping your values. Quotes in your query can cause a query to fail (and also leave you open to SQL injections). Use mysql_real_escape_string() to escape your input.

Other tips

mysql_* functions should not be used for new code. They are no longer maintained and the community has begun the deprecation process. See the red box? Instead you should learn about prepared statements and use either PDO or MySQLi. If you can't decide, this article will help to choose. If you care to learn, here is good PDO tutorial.

share|improve this answer

There could be problem with single Quotes ('), you can put your query like this

mysql_query("SELECT * FROM Users WHERE UserName LIKE '".$username."'");
share|improve this answer
3  
Why adding noise with string concatenation instead of just putting the variable in the query string? – Matteo Riva Jun 4 '10 at 16:53
@Matteo Riva Yeah, but I thought this is little cleaner way to separate variables from string. :) – nik Aug 7 '12 at 7:32

Put quotes around $username. String values, as opposed to numeric values, must be enclosed in quotes.

$result = mysql_query("SELECT * FROM Users WHERE UserName LIKE '$username'");

Also, there is no point in using the LIKE condition if you're not using wildcards: if you need an exact match use = instead of LIKE.

share|improve this answer

Please check once the database selected are not because some times database is not selected

Check

mysql_select_db('database name ')or DIE('Database name is not available!');

before MySQL query and then go to next step

$result = mysql_query('SELECT * FROM Users WHERE UserName LIKE $username');

f($result === FALSE) {
    die(mysql_error());
share|improve this answer

As scompt.com explained, the query might fail. Use this code the get the error of the query or the correct result:

$username = $_POST['username'];
$password = $_POST['password'];
if($result = mysql_query('SELECT * FROM Users WHERE UserName LIKE '.mysql_real_escape_string($username)))
{
    while($row = mysql_fetch_array($result))
    {
        echo $row['FirstName'];
    }
} else {
    echo 'Invalid query: ' . mysql_error() . "\n";
    echo 'Whole query: ' . $query; 
}

See http://www.php.net/manual/en/function.mysql-query.php for further information.

EDIT: And the actual error was the single quotes so that the var $username was not parsed. But you should really use mysql_real_escape_string($username) to avoid SQL injections.

share|improve this answer

Your code should be something like this

$username = $_POST['username'];
$password = $_POST['password'];
$query = "SELECT * FROM Users WHERE UserName LIKE '$username'";
echo $query;
$result = mysql_query($query);

if($result === FALSE) {
    die(mysql_error("error message for the user")); 
}

while($row = mysql_fetch_array($result))
{
    echo $row['FirstName'];
}

Once done with that, you would get the query printed on the screen. Try this query on your server and see if it produces the desired results. Most of the times the error is in the query. Rest of the code is correct.

share|improve this answer
+1 It will work but I see no reason of using LIKE operator in this case. The current syntax will search for exact match for username values, same we can do in = operator – asim-ishaq May 4 at 19:16

This query should work:

$result = mysql_query("SELECT * FROM Users WHERE UserName LIKE '%$username%'");
while($row = mysql_fetch_array($result))
{
    echo $row['FirstName'];
}

The problem is single quotes, thus your query fails and returns FALSE and your WHILE loop can't execute. Using % allows you to match any results containing your string (such as SomeText-$username-SomeText).

This is simply an answer to your question, you should implement stuff mentioned in the other posts: error handling, use escape strings (users can type anything into the field, and you MUST make sure it is not arbitrary code), use PDO instead mysql_connect which is now depricated.

share|improve this answer
My friend sent me the link and said than nothing works. People gave answers like using unescaped single quotes, variables inside single quotes, and so on... In some cases it may work if PHP configuration and/or hack is allowing it to work, but it is considered bad practice to let PHP guess what we meant to say. I simply wanted to show the correct query, and to point out to listen to other people about security concerns. People still come here for the answer, and for a lot of them it doesn't work. There are still web apps that use mysql_connect(), wordpress until recently I believe... – Enis P. Aginić Apr 23 at 12:22
Great, so we agree that using LIKE to match EXACT value is defeating it's purpose... You are right about the curly braces, I had no idea :D As far as my extraneous syntax, I fixed it too - but I don't think that typos are bad practice I just wanted to post with variables in question instead with the ones I used in my friend's query. – Enis P. Aginić Apr 23 at 13:17
It is possible for search string to come with wildcards, but I think we are getting in too deep. I once heard "give the same problem to five programmers and you will get five different solutions", so this is probably what they meant to say... – Enis P. Aginić Apr 24 at 9:59
Agreed ;-) Welcome to SO, btw. – Sepster Apr 24 at 10:34
simply 
$username = $_POST['username'];
$password = $_POST['password'];
$result = mysql_query('SELECT * FROM Users WHERE UserName LIKE '%$username%'') or die(mysql_error());

while($row = mysql_fetch_array($result))
{
    echo $row['FirstName'];
}

some times suppressing the query as @mysql_query(your query); 
share|improve this answer
$result = mysql_query('SELECT * FROM Users WHERE UserName LIKE $username');

You define the string using single quotes and PHP does not parse single quote delimited strings. In order to obtain variable interpolation you will need to use double quotes OR string concatenation (or a combination there of). See http://php.net/manual/en/language.types.string.php for more information.

Also you should check that mysql_query returned a valid result resource, otherwise fetch_*, num_rows, etc will not work on the result as is not a result! IE:

$username = $_POST['username'];
$password = $_POST['password'];
$result = mysql_query('SELECT * FROM Users WHERE UserName LIKE $username');

if( $result === FALSE ) {
   trigger_error('Query failed returning error: '. mysql_error(),E_USER_ERROR);
} else {
   while( $row = mysql_fetch_array($result) ) {
      echo $row['username'];
   }
}

http://us.php.net/manual/en/function.mysql-query.php for more information.

share|improve this answer
The sql query is written in single quotes so $username variable will not be evaluated. The query will fail. – asim-ishaq May 4 at 19:13

if you tried everything here and it does not work you might want to check your mysql database collation mine was set to to a swedish collation the I changed it to utf8_general_ci and everything just clicked into gear, I hope this helps someone.

share|improve this answer
This has nothing to do with the question. Also note that there's already an accepted answer. – tombom Sep 21 '12 at 9:11
ya u r rgt tombom. but they try to useful somehow. – pratik Oct 22 '12 at 7:21

Try this, it must be work, otherwise you need to print the error to specify your problem

$username = $_POST['username'];
$password = $_POST['password'];

$sql = "SELECT * from Users WHERE UserName LIKE'$username'";
$result = mysql_query($sql,$con);

while($row = mysql_fetch_array($result))
{
    echo $row['FirstName'];
}
share|improve this answer
1  
1) Wide open to SQL injection, 2) does not include error handling which is causing the error in OP's case. – deceze Feb 25 at 13:39
You are right, Thanks, and I'm sorry, I just aimed to explain the target, and I will be more specific in the next time :) – Amjad Omari Feb 26 at 7:45
+1. @deceze Yes it is wide open. But no more so that the OP's or the accepted answerer's code ;-) And it's not the lack of error handling in the OP's code causing the error... it's the error, and this answer at least attempts to resolve that (by putting single quotes around the string literal in the LIKE expression). – Sepster Apr 23 at 12:54
+1 Please add a space between LIKE and '$username', rest appears to be fine except the SQL injection. Why not use = instead of LIKE operator username must be exactly matched – asim-ishaq May 4 at 19:08

Firstly check your connection to database, is it connected successfully or not? If it's done, then after that i have written this code and it works well

if(isset($_GET['q1mrks']) && isset($_GET['marks']) && isset($_GET['qt1'])){
    $Q1mrks = $_GET['q1mrks'];
    $marks = $_GET['marks'];
    $qt1 = $_GET['qt1'];

        $qtype_qry = mysql_query("SELECT * 
                                  FROM s_questiontypes
                                  WHERE quetype_id = '$qt1'");
    $row = mysql_fetch_assoc($qtype_qry);
        $qcode = $row['quetype_code'];

                    $sq_qry = "SELECT *
                               FROM s_question
                               WHERE quetype_code = '$qcode'
                               ORDER BY RAND() LIMIT $Q1mrks";
        $sq_qry = mysql_query("SELECT *
                               FROM s_question
                               WHERE quetype_code = '$qcode'
                               LIMIT $Q1mrks");
        while($qrow = mysql_fetch_array($sq_qry)){
            $qm = $qrow['marks']."<br />";
            $total += $qm . "<br />";
        }
        echo $total."/".$marks;

}

@yasin , your are requested to vote me up, thank you in advance

share|improve this answer

There might be two reasons:

1) Do you have opened the connection to the database prior to calling mysql_query function, i don't see that in your code. Use mysql_connect before making the query. See php.net/manual/en/function.mysql-connect.php

2) The variable $username is used inside a single quote string so its value will not be evaluated inside the query. The query will definitely fail.

Thirdly the structure of query is prone to sql Injection. You may use prepared statements to avoid this security threat.

share|improve this answer

try this code, it may work fine

$username = $_POST['username'];
$password = $_POST['password'];
$result = mysql_query("SELECT * FROM Users WHERE UserName ='$username'");

while($row = mysql_fetch_array($result))
{
  echo $row['FirstName'];
}
share|improve this answer

Check Your Database Connection Script be Sure to Specify or Choose a Database mysql_connect("$db_host","$db_username","$db_pass") or die ("could not connect to mysql"); mysql_select_db("$db_name") or die ("no database");

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.