1
0

Tabel met rekeningen is af

This commit is contained in:
Daniel Boutros 2017-03-31 16:53:55 +02:00
parent 8e0ee10171
commit 526f27d1e7

View File

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