Jump to content

mysql_fetch_row


Crashthatch

Recommended Posts

How do I use the mysql_fetch_row function? It seems to have worked in all of my other scripts, but not in this one.

I get this error:

 

Warning: mysql_fetch_row(): supplied argument is not a valid MySQL result resource in c:webpageswebphpquestmain.php on line 20

 

This is the offending line:

 

$old_location = mysql_fetch_row(mysql_query(\"SELECT location FROM qu_user WHERE user=$cuser\"));

 

I try to print the result like this:

 

echo \"You have moved from $old_location\";

 

The same goes for mysql_fetch_object.

 

I have a feeling I have overlooked somthing really simple, but I cant figure out what it is.

 

Any help appriciated, thanks.

Link to comment
https://forums.phpfreaks.com/topic/423-mysql_fetch_row/
Share on other sites

Actually, crashthatch\'s method would work fine unless the query returned FALSE (meaning it failed; usually a syntax error). Try using quotes around $cuser in the query.. like this:

$old_location = mysql_fetch_row(mysql_query("SELECT location FROM qu_user WHERE user=\'$cuser\'"));

 

Hope that helps.

Link to comment
https://forums.phpfreaks.com/topic/423-mysql_fetch_row/#findComment-1419
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.