Got a simple form:
<form action="auswert ung.php" method="get">
Ihr Vorname:
<input type="text" name="Vorname">
<input type="submit">
</form>
but there will be no Information shown on the php-document:
<body>
<h2>Auswertun g des Formulars</h2>
<p>
<?php
echo "Hallo <b>$Vorname</b>, herzlich willkommen!";
?>
</p>
</body>
</html>
it is the same after altering "get" to "post" ...
???
<form action="auswert ung.php" method="get">
Ihr Vorname:
<input type="text" name="Vorname">
<input type="submit">
</form>
but there will be no Information shown on the php-document:
<body>
<h2>Auswertun g des Formulars</h2>
<p>
<?php
echo "Hallo <b>$Vorname</b>, herzlich willkommen!";
?>
</p>
</body>
</html>
it is the same after altering "get" to "post" ...
???
Comment