gymrooster_php/templates/index.html.php

39 lines
741 B
PHP
Raw Normal View History

<?php include "../php/index.php" ?>
<!-- Layout like:
2020-03-05 23:06:59 +01:00
<div>
<table>
<tr>
<th>Docent</th>
<th>Locatie</th>
<th>Opmerkingen</th>
</tr>
<tr>
<td>Kruiswijk</td>
<td>Buiten</td>
<td>Neem sportkleding mee!</td>
</tr>
</table>
</div> -->
<div>
<table>
<thead>
<tr>
<th>Docent</th>
<th>Locatie</th>
<th>Opmerkingen</th>
</tr>
</thead>
<tbody>
<?php
foreach ($rooster as $record) { ?>
<tr>
<td><?=$record["naam"]?></td>
<td><?=$record["locatie"] === 1 ? 'Binnen' : 'Buiten'?></td>
<td><?=$record["opmerking"]?></td>
</tr>
<?php } ?>
</tbody>
</table>
</div>