Jump to content

[SOLVED] Dynamic Table


tobeyt23

Recommended Posts

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

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.