Try this code
<?php
echo $_POST[test];
echo "<br>";
?>
<html>
<head>
<title></title>
</head>
<body>
<form method="POST" action="./test.php">
<input type="text" name="test">
<input type="submit" value="Get It!">
</form>
</body>
</html>
<?php echo $_POST[test]; echo "<br>";?> <html> <head> <title></title> </head> <body> <form method="POST" action="./test.php"> <input type="text" name="test"> <input type="submit" value="Get It!"> </form> </body></html>
Also It is best to use full php tags (<?php) in
-- This message may have been cut off and the rest will only be shown to members. To become a member, click here --