Posts: 217
Location: UK.Lancashire(true)
|
hmm i think you should echo the number of rows to see if the problem is in the query or the loop, that way we will have a better idea where to look
$aNum = mysql_num_rows($mysql_stuff);
echo $aNum;
exit;
by the way this line never does anything
if (mysql_num_rows($mysql_stuff) == 0)
{
print("");
}
if true it prints nothing and if false it prints nothing, perhaps it is for debugging?
|