24 lines
508 B
PHTML
24 lines
508 B
PHTML
<?php include '__header.phtml'; ?>
|
|
|
|
<table class="table">
|
|
<tr>
|
|
<th>IBAN</th>
|
|
<th>Saldo</th>
|
|
<th>TIJDELIJK</th>
|
|
</tr>
|
|
<?php
|
|
foreach ($rekeningen as $rekening) {
|
|
?>
|
|
<tr>
|
|
<td><?php echo $rekening['iban']; ?></td>
|
|
<td><?php echo $rekening['saldo']; ?></td>
|
|
<td><?php echo $rekening['nr']; ?></td>
|
|
</tr>
|
|
<?php
|
|
|
|
}
|
|
?>
|
|
</table>
|
|
|
|
<?php include '__footer.phtml'; ?>
|