1
0
This repository has been archived on 2017-06-06. You can view files and clone it, but cannot push or open issues or pull requests.
informaticaD4P-2017/templates/index.phtml

24 lines
597 B
PHTML
Raw Normal View History

2017-03-26 14:18:47 +00:00
<?php include '__header.phtml'; ?>
2017-03-29 09:39:26 +00:00
<table class="table">
<tr>
<th>IBAN</th>
<th>Saldo</th>
<th>TIJDELIJK</th>
</tr>
<?php
foreach ($rekeningen as $rekening) {
?>
2017-03-30 17:00:44 +00:00
<tr onclick="document.location.href = 'rekeningen/<?php echo $rekening['nr'] ?>'">
2017-03-29 09:39:26 +00:00
<td><?php echo $rekening['iban']; ?></td>
<td><?php echo $rekening['saldo']; ?></td>
2017-03-29 15:08:58 +00:00
<td><?php echo "&euro;" . $rekening['nr']; ?></td>
2017-03-29 09:39:26 +00:00
</tr>
<?php
}
?>
</table>
2017-03-26 14:18:47 +00:00
<?php include '__footer.phtml'; ?>