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>"; } } Quote 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. Quote Link to comment https://forums.phpfreaks.com/topic/129439-solved-dynamic-table/#findComment-671087 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.