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
615 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>
2017-03-30 17:42:22 +00:00
<!-- <th>TIJDELIJK</th> -->
2017-03-29 09:39:26 +00:00
</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>
2017-03-30 17:42:22 +00:00
<td><?php echo "&euro;" . $rekening['saldo']; ?></td>
<!-- <td><?php echo $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'; ?>