Heya Bryan
If you're really lazy and don't want to learn PHP the best way, write me and I'll whip of some basic code for you. If not, here's a few USEFUL hints :
1) Make a script that echo's the content of a variable and try it. Eg. :
<?php
echo "variable = |$variable|<br>\n";
?>
Call the script and add ?variable=<whatever>
2) If you know how FORMS in HTML works, you'll also know that when you use method='post' the content of the form-element(s) are sent "hidden" using the URL (almost like above!)
Make a form on a HTML-page when eg. 2 elements and a submit-button which has action set to your PHP-script (which will echo the contents of the FORM-elements)
3) Fiddle around with nr. 1 and 2 and see what you get from it.
Hint : No need to use DB's for such easy and small tasks. Study the way PHP handles variables!