i8grand Posted April 21, 2010 Share Posted April 21, 2010 mysql_fetch_array() expects parameter 1 to be resource, boolean given in N:\home\scie\d06rud\com570\playPuzzle.php on line 121 I keep getting these sorts of errors time and again, I was just wondering if someone could tell me what the first part of the error message means: mysql_fetch_array() expects parameter 1 to be resource, boolean given Quote Link to comment https://forums.phpfreaks.com/topic/199295-what-does-this-mean/ Share on other sites More sharing options...
Philip Posted April 21, 2010 Share Posted April 21, 2010 Typically when you run across that for mysql_fetch_array, it means the parameter you are passing into the function is not a valid mysql resource. IOW, your query failed. You can view whats wrong with your query by echo'ing mysql_error() after your query call. Quote Link to comment https://forums.phpfreaks.com/topic/199295-what-does-this-mean/#findComment-1046015 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.