1
0

Update static helpers

This commit is contained in:
2017-03-29 11:39:26 +02:00
parent 550e8619d2
commit ff4d832ad5
3 changed files with 23 additions and 5 deletions

View File

@ -1,6 +1,23 @@
<?php include '__header.phtml'; ?>
<pre><?php echo json_encode($klant); ?></pre>
<pre><?php echo json_encode($rekeningen); ?></pre>
<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'; ?>