ojef1 Posted April 17, 2011 Share Posted April 17, 2011 mysql_fetch_assoc() expects parameter 1 to be resource, boolean given in C:\xampp\htdocs\eclipse\test\mysql.php on line 14 this is the error I get if I comment out the if statements. With the If statements I get "query failed" I have to assume the problem is with $extractQuery or $extract ... I just am at a loss for what the problem could be thanks $connect = mysql_connect("localhost", "root", "") or die(mysql_error()); mysql_select_db("Pickem", $connect) or die(mysql_error()); //extract data from key table $extractQuery = "SELECT * FROM key "; $extract = mysql_query($extractQuery, $connect); if ($extract) { if (mysql_numrows($extract)) { echo $extract; print_r(mysql_fetch_assoc($extract)); } else { echo "no results found"; } } else { echo "query failed"; } Link to comment https://forums.phpfreaks.com/topic/233968-mysql_fetch_assoc-error/ Share on other sites More sharing options...
spiderwell Posted April 17, 2011 Share Posted April 17, 2011 key is a reserved word, put it in backticks `key` Link to comment https://forums.phpfreaks.com/topic/233968-mysql_fetch_assoc-error/#findComment-1202578 Share on other sites More sharing options...
ojef1 Posted April 17, 2011 Author Share Posted April 17, 2011 thank you sir Link to comment https://forums.phpfreaks.com/topic/233968-mysql_fetch_assoc-error/#findComment-1202662 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.