1
0
This repository has been archived on 2017-06-06. You can view files and clone it, but cannot push or open issues or pull requests.
informaticaD4P-2017/templates/transacties.phtml

25 lines
413 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/>
<?php
foreach ($transacties as $transactie) {
echo "<pre>";
echo json_encode($transactie);
echo "<br/></pre>";
} ?>
<?php
}
?>
<?php include '__footer.phtml'; ?>