<?php include '__header.phtml'; ?>
<form method="post" action="">
<select name="van">
<?php
foreach($rekeningen as $rekening){
echo "<option value=" . $rekening['nr'] . ">" . $rekening['iban'] . "</option>\n";
}
?>
</select><br/>
<input name="naar" type="text" placeholder="naar"></input><br/>
<input name="bedrag" type="decimal" placeholder="bedrag"></input><br/>
<textarea name="omschrijving" maxlength=40></textarea><br/>
<button type="submit">Betalen</button>
</form>
<?php include '__footer.phtml'; ?>