gymrooster_php/templates/index.html.php

34 lines
912 B
PHP
Executable File

<?php include "../php/index.php" ?>
<header>
<h1>Gymrooster</h1>
<h3><?=date("D d M Y", strtotime($date))?></h3>
<a href="/?date=<?=date("Y-m-d", strtotime("-1 day", strtotime($date)))?>">&lt;&nbsp;Dag eerder</a>
<a href="/?date=<?=date("Y-m-d", strtotime("+1 day", strtotime($date)))?>">Dag later&nbsp;&gt;</a>
</header>
<?php if ($result->num_rows !== 0): ?>
<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>
<?php else: ?>
<h3>Er zijn geen ingevingen gevonden voor deze dag.</h3>
<?php endif; ?>