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

mysqllibrary" admonition. If you're just learning, start with themysqlilibrary, or better yet, thePDOlibrary. Themysqllibrary is being actively deprecated. – Tieson T. Nov 13 '12 at 5:19