Flip_und_Maja
Grünschnabel
Hallo Zusammen,
ich hätte da mal ein kleines Problem.
Ich hab ein Formular in dem ein Select Feld drin ist und würde gerne das was dann da selectiert wird via POST übergeben. Das funktioniert irgendwie nicht und ich such mich noch blöd .
Ich häng euch die beiden Dateien mal an, vielleicht kann ja jemand helfen.
Treatment_fac_per.php
abfrage1206.php
ich hätte da mal ein kleines Problem.
Ich hab ein Formular in dem ein Select Feld drin ist und würde gerne das was dann da selectiert wird via POST übergeben. Das funktioniert irgendwie nicht und ich such mich noch blöd .
Ich häng euch die beiden Dateien mal an, vielleicht kann ja jemand helfen.
Treatment_fac_per.php
HTML:
<html>
<head>
<title>Treatment Facility Permit</title>
</head>
<body>
Treatment Facility Permit
<table border="0">
<tr>
<th>ISO-State-Code</th>
<th>Name of the company [official name]</th>
</tr>
<td>
<form action="abfrage1206.php" methode="post">
<p>
<select name="TreFaISO_1" size="6" >
<option>DE</option>
<option>FIN</option>
<option>NOR</option>
<option>LET</option>
<option>LIT</option>
<option>EST</option>
</select>
</p>
</td>
</form>
<td>
<form action="abfrage1206.php" method="post">
<p><input name="NOC_O_1" type="text" size="25" maxlength="40"></p>
</tr>
</table>
</br>
<input type="submit" value="Send">
</form>
</body></html>
</body>
</html>
abfrage1206.php
PHP:
<?php
$TreFaISO_1 = $_POST["TreFaISO_1"];
$NOC_O_1 = $_POST["NOC_O_1"];
if($TreFaISO_1=="" OR $NOC_O_1=="")
{
echo "Bitte alles ausfüllen<br \>\n";
echo "<a href=\"javascript:history.back();\">Zurück</small></a>";
}
else
{
echo $TreFaISO_1;
echo $NOC_O_1;
}
?>