PHP-Code:
$datafile='dropdown.xxl';
$inhalt=file($datafile);
for($i=0; $i<count($inhalt); $i++)
$line[]=explode(';', $inhalt[$i]);
echo''.$line[0][0].'
<html>
<head>
<meta http-equiv="content-type" content="text/html;charset=iso-8859-1">
<title>DROPDOWN - TEST</title>
</head>
<body bgcolor="#ffffff">
<form action="dropdown.php?action=write" method="post" name="FormName">
<p><select name="selectName" size="1">
<option value="5" '.if ($line[0][0] == "5"){print "selected";}.' >5</option>
<option value="6" '.if ($line[0][0] == "6"){print "selected";}.' >6</option>
<option value="7" '.if ($line[0][0] == "7"){print "selected";}.' >7</option>
<option value="8" '.if ($line[0][0] == "8"){print "selected";}.' >8</option>
<option value="9" '.if ($line[0][0] == "9"){print "selected";}.' >9</option>
<option value="10" '.if ($line[0][0] == "10"){print "selected";}.' >10</option>
<option value="11" '.if ($line[0][0] == "11"){print "selected";}.' >11</option>
</select><input type="submit" name="submitButtonName" border="0"></p>
</form>
</body>
</html>
'?>
Irgendwo hab ich da n Fehler drin und find ihn nicht. Ich weiss es das es nur was kleines is, aber nach mittlerweile 11 std. PHP seh ich es nicht mehr. Könnt ihr mir helfen??
Kommentar