Anup
U could pass the value U require from each page to the next using the URL, e.g.
www.myweb.com/usereg.php?Name=Fred&Surname=Smith
{Where Name and Surname are the values U are passing.}
U can get the values when U get to the next page using the PHP interal variable
$get_value = $HTTP_GET_VARS['Name'];
$get_value2 = $HTTP_GET_VARS['Surname'];
This would return Fred and Smith
Only problem with this method is that the values are passed in full view in the URL. OK if they are sensitive info !!
Otherwise U could U cookies.
Nic