Hallo liebe Leute ,
hätte da ein Problem mit dem OnChange Befehl im <select>
es kommt keine ausgabe also er tut nichts :/ und fehlermeldung kommt auch nicht
weiß jemmand warum ?
hätte da ein Problem mit dem OnChange Befehl im <select>
PHP:
<form name="frmadd" action="suchen.php" method="GET">
Klasse: <select onChange="document.frmadd.submit();" name="KL" size="1">
<?php
$sql='********';
$result= mysql_query($sql) or die (mysql_error());
while ($row = @mysql_fetch_assoc($result))
{
echo "<option >".$row[klasse]."</option>";
}
unset($result);
?>
</select>
<input type="submit" name="submitbutton" value="OK">
</form>
weiß jemmand warum ?