1
0
Fork 0

Tabel met rekeningen is af

merge-requests/3/head
Daniel Boutros 7 years ago
parent 8e0ee10171
commit 526f27d1e7

@ -4,6 +4,8 @@
<tr>
<th>IBAN</th>
<th>Saldo</th>
<th>Rekeningtype</th>
<th>Rente</th>
</tr>
<?php
foreach ($rekeningen as $rekening) {
@ -11,6 +13,8 @@
<tr class="clickable" onclick="document.location.href = 'rekeningen/<?php echo $rekening['nr'] ?>'">
<td><?php echo $rekening['iban']; ?></td>
<td><?php echo "&euro;" . $rekening['saldo']; ?></td>
<td><?php echo $rekening['naam']; ?></td>
<td><?php echo $rekening['rente']; ?></td>
</tr>
<?php