Hallo,
ich habe ein Auswahlfeld welches nach Alphabet sortiert wird.
Nun will ich aber, dass "egal" trotzdem vor "a" kommt. also so.
jetzt:
Allensbach
egal
Meersburg
...
so solls sein:
egal
Allensbach
Meersburg
Das ist der Aktuelle Code-Teil:
Hat mir jemand eine Idee?
ich habe ein Auswahlfeld welches nach Alphabet sortiert wird.
Nun will ich aber, dass "egal" trotzdem vor "a" kommt. also so.
jetzt:
Allensbach
egal
Meersburg
...
so solls sein:
egal
Allensbach
Meersburg
Das ist der Aktuelle Code-Teil:
PHP:
<?php
include "PASSWORT";
$abfrage = "SELECT DISTINCT `aort` FROM `gastgeber` ORDER BY `aort` ASC";
$ergebnis = mysql_query($abfrage);
echo '<select size="1" name="ort" style="color:rgb(115,80,48); background-color:rgb(254,254,182);">';
while($row = mysql_fetch_object($ergebnis)){
$aort = $row->aort;
echo '<option value="'.$aort.'">'.$aort.'</option><br>';
}
echo ' </select>';
?>
Hat mir jemand eine Idee?