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

I'm new to MySQL coding. I have this simple mysql_fetch_array here but it doesn't seem to be working for some reason it always comes up with this error "Warning: mysql_fetch_array() expects parameter 1 to be resource, null given in"

Here is my code

<?php
require_once('scripts/config.inc.php');
require_once("db.inc.php");

$array = mysql_fetch_array($query);

$query = mysql_query("SELECT * FROM users WHERE id='1'");
?>

Thanks, Tim

share|improve this question
4  
You are attempting to fetch an array from the result of the query before you actually run the query... You need to switch them around. – animuson Nov 13 '12 at 5:17
just fix the order, query than fetch – Ibu Nov 13 '12 at 5:17
3  
Consider this the obligatory "don't use the mysql library" admonition. If you're just learning, start with the mysqli library, or better yet, the PDO library. The mysql library is being actively deprecated. – Tieson T. Nov 13 '12 at 5:19

closed as too localized by animuson, DCoder, Daniel Fischer, mootinator, ThiefMaster Nov 13 '12 at 15:39

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

3 Answers

up vote 0 down vote accepted

You are trying to use the variable $query on line 5 before it's being defined. Try to put line 5 under line 7 and that should do it.

share|improve this answer

Swap the below 2 lines in your code, because you are fetching array before executing your query

$query = mysql_query("SELECT * FROM users WHERE id='1'");

$array = mysql_fetch_array($query);
share|improve this answer
Thank you for that, it was a bit of a dud mistake – Tim Tattsy Apr 3 at 23:39

I think you need to refresh your Mysql concepts. Please start looking from here.

First query is executed. Then result is fetched in the form of array or object. So first execute query and then fetch result from it like

$query = mysql_query("SELECT * FROM users WHERE id='1'");
$array = mysql_fetch_array($query);

I hope you will get much better understanding after reading this. :-)

share|improve this answer

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