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