Tabel met rekeningen is af
This commit is contained in:
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 "€" . $rekening['saldo']; ?></td>
|
||||
<td><?php echo $rekening['naam']; ?></td>
|
||||
<td><?php echo $rekening['rente']; ?></td>
|
||||
</tr>
|
||||
<?php
|
||||
|
||||
|
Reference in New Issue
Block a user