This commit is contained in:
aschwarz
2024-02-21 13:18:33 +01:00
parent f54886c481
commit d8dceb870b
7 changed files with 877 additions and 248 deletions

View File

@ -27,7 +27,7 @@ if ($function == 'fetch_select') {
while ($row = $result->fetch_array()) {
echo "<option value='$row[lid]'";
if ($row1['land'] == $row['lid']) {
if (isset($row1['land']) AND isset($row['lid']) AND $row1['land'] == $row['lid']) {
echo " selected ";
}
echo ">" . $row['land'] . "</option>";