Code: Select all
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Untitled</title>
</head>
<body>
<form action="output.php" method="post">
<input type="text" name="test" value="demotext" size="20">
<input type="submit" name="Absenden" value="Absenden">
</form>
</body>
</html>
so and then i try to grab the values in the textboxex with the code below... but i get an error: Notice: Undefined variable: test in c:\wwwroot\phpueb\output.php on line 2
Code: Select all
<?
echo "Show me $test";
?>
any ideas?? THX ahead for your time!