if register_globals is ON you can just access it directly by name:
<input type="text" name="first_name">
on the form proccessing page you can simply type:
echo $first_name;
if register_globals is OFF you must do:
echo $POST['first_name'];
or
echo $GET['first_name'];
depending on which form method you used.