1
0

Transactiepagina

This commit is contained in:
JelmerHinssen
2017-03-29 16:47:24 +02:00
parent 1f9f6478e6
commit 7188940141
5 changed files with 142 additions and 0 deletions

View File

@ -0,0 +1,14 @@
<?php include '__header.phtml'; ?>
<select>
<?php
foreach($rekeningen as $rekening){
echo "<option>" . $rekening['rekeningnr'] . "</option>\n";
}
?>
</select><br/>
<input type="text" placeholder="naar"></input><br/>
<input type="number" placeholder="bedrag"></input><br/>
<textarea maxlength=40></textarea>
<?php include '__footer.phtml'; ?>

View File

@ -0,0 +1,23 @@
<?php include '__header.phtml'; ?>
<?php
if(!$rekening){
?>
Fout: niet jouw eigen rekening.
<?php
}else{
?>
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'; ?>