mirror of
https://github.com/Znote/ZnoteAAC.git
synced 2025-05-01 11:49:21 +02:00
19 lines
420 B
PHP
19 lines
420 B
PHP
<div class="sidebar">
|
|
<h2>Search town list</h2>
|
|
<div class="inner">
|
|
<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>
|
|
</div>
|
|
</div>
|