I'm having a problem accessing session variables.
I am using XP, Apache2, and PHP5.
This is my php.ini session path:
session.save_path = "E:\Apache2\sessions"
I know it's valid because php saves the session files there without trouble.
The following code will create the session file in the proper directory:
$_SESSION["month"]="April";
I can open the session file in the session directory and see that the session info is set, so I know it's not a save_path problem.
I use session_start() at the top of the page, and everything seems fine. For some reason I can't access the session from php.