Jump to content

[SOLVED] Strange MySQL Error that wasnt there before.


Woodsyx

Recommended Posts

Hey just wondering if I could get some help with this error. I had the exact same lines of code up to that point in a previous file with no problems and all of a sudden this is showing up.

 

Warning: mysql_num_rows(): supplied argument is not a valid MySQL result resource in ///// on line 51

 

 

$result = mysql_query("SELECT lasttime FROM idlers WHERE name='".mysql_real_escape_string($name)."'");
		$row = mysql_fetch_array($result);
		$ptime = $row['lasttime'];

 

i would say update the line to

 

$result = mysql_query("SELECT lasttime FROM idlers WHERE name='".mysql_real_escape_string($name)."'") or die(mysql_error());

to display the error

 

but your code doesn't contain the line with the error !

mysql_num_rows() isn't in that code!

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.