first commit

This commit is contained in:
2024-11-10 21:08:49 +01:00
commit 0d932ce5ee
14455 changed files with 2567501 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
<?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>