Version 1:
speicher die Dateien erst in einem assoziativen Array und gib dann der ausgewählten Option das Attribut selected:
Code:
$optionen = array ( '../ticker.txt' => 'Tickertext', '../links.txt' => 'Linkstext' ); ... ?> ... <select name="auswahl"> <?php for (resert($optionen); list($val,$txt) = each($optionen) ;) echo '<option ', ($val==$auswahl ? 'selected ':''), 'value="', $val, '">', $txt, '</option>', "\n"; ?> </select>
Füg ein <input type="hidden" name="auswahl2" value="<?php echo $auswahl"> ins Formular ein und frag beim Speichern $auswahl2 ab.
Einen Kommentar schreiben: