c275c8f874
Je kan een soort van een overboeking doen
17 lines
510 B
PHTML
17 lines
510 B
PHTML
<?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'; ?>
|