39 lines
741 B
PHP
Executable File
39 lines
741 B
PHP
Executable File
<?php include "../php/index.php" ?>
|
|
|
|
<!-- Layout like:
|
|
<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>
|