what is this...... plz help

fahim

New Member
Messages
4
Reaction score
0
Points
0
Warning: mysql_num_rows(): supplied argument is not a valid MySQL result resource in /home/corey/public_html/forums/russ_script.php on line 23

Warning: mysql_num_rows(): supplied argument is not a valid MySQL result resource in /home/corey/public_html/forums/russ_script.php on line 25

!!WARNING!!

Your cPanel account is not linked
to a forum account!
 

Spasm

New Member
Messages
10
Reaction score
0
Points
0
The result from mysql_query isn't valid. It should be something like this:

Code:
connect to mysql and what not

$result = mysql_query("SELECT * FROM my_table");
if (! $result) {
 die("mysql_query() failed!");
}

$numRows = mysql_num_rows($result);
 

LHVWB

New Member
Messages
1,308
Reaction score
0
Points
0
It would be useful if you code post the code that is causing that error, if you want help correcting it. :)
 

galaxyAbstractor

Community Advocate
Community Support
Messages
5,508
Reaction score
35
Points
48
@spasm and LHVWB: Read the errors again, it's from the x10 AMP.

Is it still that way or is it working now?
 
Last edited:
Top