Hi Mike!
First, you are going to be very happy to realize how easy this is. Okay, forms :
http://htmlgoodies.earthweb.com/tutors/forms.html
As you go through the form tutorial above (or any other you choose) pay special attential to NAME and VALUE. Here is what it means :
name=value
variablename=itsvalue
And in the url :
index.php?name=value&anothername=value
Now, to use this create two pages. Put your form in the first page. For now, make all your forms the GET method and look at the urls. So :
---index.php-----
<form method="get" action="process.php">
<br><input type="text" name="foo">
<br><input type="text" name="blah">
<br><input type="submit" name="submit">
</form>
---process.php----
<?php
print "$foo and $blah";
?>
WOW, pretty easy huh? Whatever you typed in index.php will print out. Add more , experiment with different types and most of all, have fun :-)
Regards,
Philip