Hi,
Bit of a basic question for all you clever people. I seem to be losing my session variable.
I have session_start() on all the pages that I want the session to be availabe. On one of the pages I have the following script:
session_register("Refs_ID");
session_register("X_Ref");
$Refs_ID = $myrow->Table_ID;
$X_Ref = $myrow->X_Ref;
Now when I call it on teh next page it doesnt have it. I check to see if the session_id was the same and they arn't. I can only presume that the session is being lost and a new session ID is being created.
I know this is a pretty vage explanation but if anyone has any ideas that would be great.
Tambo