1
0

Merge branch 'dev' of git.verictas.com:InformaticaD4p/informatica-eindproject into dev

This commit is contained in:
2017-03-29 17:10:54 +02:00
7 changed files with 143 additions and 1 deletions

View File

@ -12,7 +12,7 @@
<tr>
<td><?php echo $rekening['iban']; ?></td>
<td><?php echo $rekening['saldo']; ?></td>
<td><?php echo $rekening['nr']; ?></td>
<td><?php echo "&euro;" . $rekening['nr']; ?></td>
</tr>
<?php

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'; ?>