OK,
This is what i have acertained so far.
The script is creating the session from the following section of the script.
// Register some session variables!
session_register('username');
session_register('surname');
session_register('email');
session_register('userlevel');
It creates the session which contains the following info
username|s:1:"m";surname|s:1:"P";email|s:18:"mark@****4.me.uk";userlevel|s:1:"0";
Then when i exit this script it runs the following, which displays the session id, but wont display any of the information inside the session thats created.
<?
session_start();
echo "Your session ID is <strong>". session_id() ."</strong>";
echo "<a href='killsess.php'>kill session</a>";
echo "Sessions: <pre>";
print_r($_SESSION);
echo "</pre>";
?>
Any ideas how to access the information in the session and also why it wont display the contents of the session, This seems to be the final hurdle! Hopefully!!