Why would this code produce the desired list of records in a table row, and
then add an equal amount of blank lines ( = num of records) before producing
the next set of records?

while ($row = mysql_fetch_array ($result)) {
$num = count ($row);
for ($c=0; $c<$num; $c++) {
 echo $row[$c]."<BR>";
}
}

Thanks,
Mike @ keywordz


-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to