Files
szkoleniauryzaj.pl/wp-content/plugins/wp-table-manager-light/app/site/helpers/table_template.inc.php
2024-11-10 21:08:49 +01:00

19 lines
532 B
PHP

<?php $r= 0;$c =0; ?>
<thead>
<tr>
<?php foreach( $headers as $header ){ ?>
<th class="<?php echo 'dtr'.$r.' dtc'.$c ;?>" ><?php echo $header ?></th>
<?php $c++; }?>
</tr>
</thead>
<tbody>
<?php foreach( $result as $row ){ $r++; $c= 0; ?>
<tr>
<?php foreach( $row as $cell ){ ?>
<td class="<?php echo 'dtr'.$r.' dtc'.$c ;?>"><?php echo $cell ?></td>
<?php $c++; } ?>
</tr>
<?php } ?>
</tbody>