Vermutlich, weil register.globals nicht aktiv ist?
probiers mal hiermit:
PHP-Code:
<?php
if ($_GET['do']=="submit")
{
echo "Sie haben $auswahl gewählt!";
}
?>
<body>
Bitte waehlen Sie eine Datei aus:
<form action = "<?php $PHP_SELF&do=submit?>" method = "post">
<select name = "auswahl">
<option value = "bla" selected> blatext
<option value = "bla2"> bla2text
<option value="bla3"> bla3text
</select>
<input type = "submit" name = "gesendet">
</form>