<?
// file where you first register your var
session_start();
$var = "whatever";
session_register("var");
<?
// differen file
$theSessionVar = $var;
?>
as you can see you can call the var with the name you registered it. i think that would work. if not try to read the amn pages once more or wait for another post =).
regards ali