View Single Post
Old April 19th, 2009, 11:15 PM   #2 (permalink)
imagirlgeek
Junior Member
Verified Customer
 
Join Date: Feb 2009
Location: Sugarland, TX
Posts: 8
The 2 lines are:

577 $rowcnt = mysql_num_rows($queryv);
615 while ( $row = mysql_fetch_row($queryv) )

If I do this -->

577 $rowcnt = @mysql_num_rows($queryv);
615 while ( $row = @mysql_fetch_row($queryv) )

The error goes away. Does this mean my tables didn't get upgraded?
imagirlgeek is offline   Reply With Quote