To register a session use:
session_register('variable_name');
Register it on the page (script) where you will then propogate (pass) it onto other scripts. Make sure you use: session_start(); at the top of all scripts you want the session variables to be available in.
To display a session variable:
if(isset($variable_name)) {
echo "$variable_name is set!"
}
else {
echo "Variable is not set!"
}
Good luck!
Russ