Yes.
on script 1.php
session_start();
session_register('foo');
foo = "bar";
on script 2.php
session_start()
session_register('foo');
print(foo);
Look up those functions for further details, but that is the start. You could also just register one associative array ...