
PHP tutorial: 'POST' method
This is the post method, similar to the 'GET' method, but the post method does not display information in the adress bar, much more secure :)
[color=#0000bb] [PHP]
<form action='YourWebpage.php' method='POST'>
Name: <input type='Text' name='PutANameHere'>
Age: <input type='Text' name='PutNameHere'>
</form>
$name = $_POST['PutANameHere'];
$age = $_POST['PutNameHere'];
echo "Your name is $name,
<P> And your age is $age";
[/PHP]
[/color]