
PHP tutorial: 'GET' text extractor
This is actually a method, not an extractor :D Alright, I am going to show you a simple 'GET' statement, very clever :D
[php]
<form action='YourWebpage.php' method='GET'>
Name: <input type='Text' name='PutANameHere'>
Age: <input type='Text' name='PutNameHere'>
</form>
$name = $_GET['PutANameHere'];
$age = $_GET['PutNameHere'];
echo "Your name is $name,
<P> And your age is $age";
[/php]
There you go :D report errors please.