Ich habe ein sehr einfaches Script geschrieben, was eigentlich die Daten von einem Formular ausgeben soll, des funktioniert allerdings nicht.
So sieht das Formular aus:
Und so das Script, welches eine Ausgabe machen soll:
Kann mir jemand sagen, was ich falsch mache?
So sieht das Formular aus:
<html>
<body>
Bitte tragen Sie Ihren Vornamen und Ihren Nachnamen ein.<br />
Senden Sie anschließend das Formular ab. <p />
<form action = "ub09a.php" method= "post">
<input name = "vor" />Vorname<p />
<input name = "nach" />Nachname<p />
<input name = "strasse" />Straße<p />
<input name = "plz" />Postleitzahl<p />
<input name = "ort" />Ort<p />
<input type = "submit" />
<input type = "reset" />
</form>
</body>
</html>
<body>
Bitte tragen Sie Ihren Vornamen und Ihren Nachnamen ein.<br />
Senden Sie anschließend das Formular ab. <p />
<form action = "ub09a.php" method= "post">
<input name = "vor" />Vorname<p />
<input name = "nach" />Nachname<p />
<input name = "strasse" />Straße<p />
<input name = "plz" />Postleitzahl<p />
<input name = "ort" />Ort<p />
<input type = "submit" />
<input type = "reset" />
</form>
</body>
</html>
Und so das Script, welches eine Ausgabe machen soll:
<html>
<body>
<?php
echo "Guten Tag, " . $vor . " " .$nach;
?>
</body>
</html>
<body>
<?php
echo "Guten Tag, " . $vor . " " .$nach;
?>
</body>
</html>
Kann mir jemand sagen, was ich falsch mache?
Kommentar