Einzelnen Beitrag anzeigen
  #2  
Alt 26.05.2005, 20:20:27
PhiL_phpnoob PhiL_phpnoob ist offline
Anfänger
 
Registriert seit: May 2003
Beiträge: 66
AW: Fehlermeldung in PHP

also:

Code:
<html>
  <head>
  </head>
<body>

Bitte Wert eingeben:
<form action = "test1.php" method = "post">
 <input name = "Test"> 
 <input type = "submit">
 <input type = "reset">
</form>

</body>
</html>
Um den Wert des Eingabefeldes "Test" zu bekommen:

PHP-Code:
<?    
    echo "Uebergabe Wert: ".$_POST['Test']."";
?>
Gruß
PhiL
Mit Zitat antworten