$i = 0;
while ($myrow = mysql_fetch_array($sql)) {
if (++$i % 5 == 0) echo '<tr>';
...
Note: if used repeatedly do not increment the $i again in the loop.
HTH
Richard
-----Original Message-----
From: nabil
Sent: Wednesday, May 26, 2004, 2:28:28 PM
> Hiya,
> How can i draw a new <tr> AFTER FIVE <td> in the following loop
> (i want to echo the records in 5 columns width tables whatever the number of
> records will be fetched)
> ..
> echo '<table>';
> while ($myrow = mysql_fetch_array($sql))
> {
> echo $myrow[0];
> }
> echo '</table>';
> regards
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php