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
Raw Normal View History

2017-03-29 14:47:24 +00:00
<?php include '__header.phtml'; ?>
2017-03-30 17:04:14 +00:00
<?php
if (!$rekening) {
?>
2017-03-29 14:47:24 +00:00
Fout: niet jouw eigen rekening.
<?php
2017-03-30 17:04:14 +00:00
} else {
?>
<a href="overboeking">Nieuwe overboeking</a><br/><br/>
2017-03-29 14:47:24 +00:00
Saldo: <?php echo $rekening['saldo']?><br/>
2017-03-30 17:04:14 +00:00
<?php
foreach ($transacties as $transactie) {
echo "<pre>";
echo json_encode($transactie);
echo "<br/></pre>";
} ?>
2017-03-29 14:47:24 +00:00
<?php
2017-03-30 17:04:14 +00:00
2017-03-29 14:47:24 +00:00
}
?>
<?php include '__footer.phtml'; ?>