mirror of
https://github.com/Znote/ZnoteAAC.git
synced 2025-04-30 11:19:22 +02:00
13 lines
306 B
PHP
13 lines
306 B
PHP
<form action="houses.php" method="post">
|
|
Select town:<br>
|
|
<select name="selected">
|
|
<?php
|
|
foreach ($config['towns'] as $id => $name) echo '<option value="'. $id .'">'. $name .'</option>';
|
|
?>
|
|
</select>
|
|
<?php
|
|
/* Form file */
|
|
Token::create();
|
|
?>
|
|
<input type="submit" value="Fetch houses">
|
|
</form>
|