when you post a form, the form data goes into the $_POST superglobal. So if you have a field
<input type="text" name="firstname">
then on the page the form points to, you will be able to access the firstname like this;
echo 'Hey ' . $_POST['firstname'];
hope that helps
adam