I'm having trouble figuring out how to use sessions.....I thought that you only needed to start a session and it would be available accross all the pages?
I can see the files being created in the /tmp dir...
I have index.php which has this code:
<?php
session_start();
print ("<a href='page2.php?PHPSESSID=$PHPSESSID'>link</a>");
?>
page 2 then has this:
<?php
session_start();
print ("<a href='index.php?PHPSESSID=$PHPSESSID'>link</a>");
?>
But the variable is always empty....I have tried many different ways including using session_register() to give it a name and then call that name on the next page but I can get the PHPSESSID to show anywhere....?
A point in the right direction would be appreciated.
rgds,
scott d~