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/overboeking.phtml
2017-03-29 16:47:24 +02:00

15 lines
346 B
PHTML

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