tobeyt23 Posted October 21, 2008 Share Posted October 21, 2008 I would like to create a dynamic table that will create a new row after every 6 cols. I tried this but not sure this is the best way? $col == 0; for ($i=0; $i<7; $i++) { if($col == 0) { print "<tr>"; } print "<td> </td>"; $col++; if($col == 6) { $col = 1; print "</tr>"; } } Link to comment https://forums.phpfreaks.com/topic/129439-solved-dynamic-table/ Share on other sites More sharing options...
ratcateme Posted October 21, 2008 Share Posted October 21, 2008 try print "<table><tr>"; for ($i=0; $i<7; $i++) { print "<td> </td>"; if($i%6 == 0) { print "</tr>"; } } print "</tr></table>" Scott. Link to comment https://forums.phpfreaks.com/topic/129439-solved-dynamic-table/#findComment-671087 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.