Jump to content

Mysql_fetch_assoc() error


ojef1

Recommended Posts

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
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.