1
0
Fork 0

"Nieuwe overboeking" link

merge-requests/3/head
Christiaan Goossens 7 years ago
parent 929f1773c7
commit 4f47ae6a55

@ -1,23 +1,24 @@
<?php include '__header.phtml'; ?>
<?php
if(!$rekening){
?>
<?php
if (!$rekening) {
?>
Fout: niet jouw eigen rekening.
<?php
}else{
?>
} 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
foreach ($transacties as $transactie) {
echo "<pre>";
echo json_encode($transactie);
echo "<br/></pre>";
} ?>
<?php
}
?>
<?php include '__footer.phtml'; ?>