hmm...
ich würde das so machen..
Eingabeformular:
<form action="blub.php" method="post">
Name:
<input type="text" name="name"rows="25">
<input type = "submit" value = "Eintragen">
</form>
Und dan die Seite wo du es angezeigt haben willst (hier blub.php):
<?php
if(isset($_POST['name']) )
{
echo"Wilkommen".$_POST['name']."
";
}
?>
MFG
cssFreak
____________________________________
xhtml 1.0 strict
|