<input type="text" name="first_name" size="20">
on the next page, you would get that by calling
$first_name = $_POST['first_name'];
If you want to call it inside "" do
echo "$_POST[first_name]";
Is that what you mean?
If your form method is GET, then
$first_name = $_GET['first_name'];
If you want to have a post and allow someone to be able to manually type in the url and id also then
$first_name = $_REQUEST['first_name'];