Brad Bonkoski wrote:
Something like this perhaps...

$arr = array(...);
$per_row = 5;
$elem = count($arr);
for($i=0; $i<$elem; $i++) {
   if( $i == 0 )
      echo "<tr>";
   else if( $i % $per_row == 0 )
      echo "</tr><tr>";
   echo "<td>$arr[$i]</td>";
}
   That simply displays things in order, 1 through 5, then 6 through 10.

--
W | It's not a bug - it's an undocumented feature.
 +--------------------------------------------------------------------
 Ashley M. Kirchner <mailto:[EMAIL PROTECTED]>   .   303.442.6410 x130
 IT Director / SysAdmin / Websmith             .     800.441.3873 x130
 Photo Craft Imaging                       .     3550 Arapahoe Ave. #6
 http://www.pcraft.com ..... .  .    .       Boulder, CO 80303, U.S.A.

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to