1
0
Fork 0

Transactietabel

merge-requests/3/head
Daniel Boutros 7 years ago
parent 526f27d1e7
commit 71415260e4

@ -10,13 +10,26 @@ Fout: niet jouw eigen rekening.
?>
<a href="overboeking">Nieuwe overboeking</a><br/><br/>
Saldo: <?php echo $rekening['saldo']?><br/>
<table class="table">
<tr>
<th>Rekeningnummer Afzender</th>
<th>Rekeningnummer Ontvanger</th>
<th>Bedrag</th>
</tr>
<?php
foreach ($transacties as $transactie) {
echo "<pre>";
/* echo "<pre>";
echo json_encode($transactie);
echo "<br/></pre>";
echo "<br/></pre>"; */
?>
<tr>
<td><?php echo $transactie['van']; ?></td>
<td><?php echo $transactie['naar']; ?></td>
<td><?php echo $transactie['bedrag']; ?></td>
</tr>
<?php
} ?>
</table>
<?php
}