1
0
Fork 0
You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

38 lines
744 B
PHTML

<?php include '__header.phtml'; ?>
<?php
if (!$rekening) {
?>
Fout: niet jouw eigen rekening.
<?php
} else {
?>
<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 json_encode($transactie);
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
}
?>
<?php include '__footer.phtml'; ?>