What I want to do is pass the same variables to 2-3 pages (webpage 1, webpage 2, webpage 3)

I found out the best way is using sessions.
This what I know:
===============================================================
what code do you in the very first line


But do you put it all pages that displaysinfo?(webpage 1,webpage 2,webpage 3) or just the main page that you input your info?

Does it have to be an HTM or a php file?
====================================================================

to save info


$_SESSION['Total_Rt_Pts']= $Total_Rt_Antler_Pts;
$_SESSION['name']= $_POST['name'];
$_SESSION['address']=$_POST['address'];


again where do I put this in webpage 2, webpage 3
============================================================
how do display the info??
I'm not sure how to register the info and how to retrieve it.

sorry if I ask too much but I spent 2 weeks trying to figure this out, used Google all I got was a very generic answer
thanks in advance
Joe