Ich möchte mit einer PHP-Variable einen Wert des Drop Down Feldes bei dem nächsten Aufruf des Scriptes automatisch auswählen.Ich bin so weit kann mir eine helfen,bitte!??<html>
<title>test</title>
<head>
<script language="JavaScript">
function vorselektieren(stimmung)
{
document.Jahr.Anfangsdatum.options[document.Jahr.Anfangsdatum.selectedIndex].value=stimmung;
}
</script>
<?
$testwert="juppi";
$testwert1="verwirrt";
?>
</head>
<body onload="vorselektieren('<? echo $testwert1 ?>')" >
<form name=Jahr action='<?$PHP_SELF?>' method='get' >
<select name="Anfangsdatum" >
<option value="<? echo $testwert ?>" ><? echo $testwert ?>
<option value="<? echo $testwert1 ?>" ><? echo $testwert1 ?>
</select>
<input type="submit" value="GoGoGo">
</form>
<body onload="vorselektieren('<? echo $testwert1 ?>')" >
</body>
</html>
<title>test</title>
<head>
<script language="JavaScript">
function vorselektieren(stimmung)
{
document.Jahr.Anfangsdatum.options[document.Jahr.Anfangsdatum.selectedIndex].value=stimmung;
}
</script>
<?
$testwert="juppi";
$testwert1="verwirrt";
?>
</head>
<body onload="vorselektieren('<? echo $testwert1 ?>')" >
<form name=Jahr action='<?$PHP_SELF?>' method='get' >
<select name="Anfangsdatum" >
<option value="<? echo $testwert ?>" ><? echo $testwert ?>
<option value="<? echo $testwert1 ?>" ><? echo $testwert1 ?>
</select>
<input type="submit" value="GoGoGo">
</form>
<body onload="vorselektieren('<? echo $testwert1 ?>')" >
</body>
</html>
Kommentar