15 lines
346 B
PHTML
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'; ?>
|