This commit is contained in:
Walter Hupfeld
2024-02-18 16:01:36 +01:00
parent 418cf9d113
commit 3249bee870
4 changed files with 17 additions and 13 deletions

View File

@@ -69,9 +69,9 @@
<!-- District -->
<form method="GET" action="index.php">
<select name="d" style="float:left;margin-top:0.5em;margin-right:0.5em;" onchange="this.form.submit()">
<?php foreach ($arrDistrict as $key => $strTitle):
<?php foreach ($arrDistrict as $key => $strMTitle):
$strActive = ($strDistrict==$key) ? "selected=\"selected\"" : ""; ?>
<option value="<?=$key?>" <?=$strActive?>><?=$strTitle?></option>
<option value="<?=$key?>" <?=$strActive?>><?=$strMTitle?></option>
<?php endforeach; ?>
</select>
</form>