1
0

Foutherstel

This commit is contained in:
Daniel Boutros 2017-03-30 19:42:22 +02:00
parent 819c91e319
commit ad991dc7f5

View File

@ -4,15 +4,15 @@
<tr> <tr>
<th>IBAN</th> <th>IBAN</th>
<th>Saldo</th> <th>Saldo</th>
<th>TIJDELIJK</th> <!-- <th>TIJDELIJK</th> -->
</tr> </tr>
<?php <?php
foreach ($rekeningen as $rekening) { foreach ($rekeningen as $rekening) {
?> ?>
<tr onclick="document.location.href = 'rekeningen/<?php echo $rekening['nr'] ?>'"> <tr 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 "&euro;" . $rekening['saldo']; ?></td>
<td><?php echo "&euro;" . $rekening['nr']; ?></td> <!-- <td><?php echo $rekening['nr']; ?></td> -->
</tr> </tr>
<?php <?php