yo dude
lets say you have an input field :
<input type=text name="name" >
then if you used the "POST" method, in the page that you posted it to you first you should assign a variable on that page with the value, you do this like so :
$name = $_POST['name '] (this must be the name you assigned to the field on the previous page)
then you can call the variable on that page like an ordinary var.if you were to then type :
echo " Hello there $name";
you should get a proper output.
have fun.....
lata