verfaßt von crowsname, Arnsberg, 26.12.2013, 11:44:46
Hallo,
wahrscheinlich stehe ich völlig auf dem Schlauch.
Warum wird der folgende PHP Code nicht interpretiert?
Formular:
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Titel</title>
</head>
<body>
<p>Bitte geben Sie Ihre Daten ein:</p>
<form action="copy_ueb_10.php" method="post">
<p><input name="vor" />Vorname</p>
<p><input name="nach" />Nachname</p>
<p><input name="str" />Straße</p>
<p><input name="plz" />PLZ</p>
<p><input name="ort" />Ort</p>
<input type="submit" /><input type="reset" />
</form>
</body>
</html>
Ausgabe Datei:
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Titel</title>
</head>
<body>
<p>Ihre Anschrift lautet:</p>
<?php
echo "<p>" . $_POST["vor"] . " " . $_POST["nach"] . "</p>";
echo "<p>" . $_POST["str"] . "</p>";
echo "<p>" . $_POST["plz"] . " " . $_POST["ort"] ."</p>";
?>
</body>
</html>
Ergebnis im Browser:
Gruß
Michael
gesamter Thread: