Ok, so I'm using sessions to track data on a new project. I've used sessions extensively in the past and never had any trouble. Now here's what's happening. I set variables using:
$_SESSION['key']='blah blah blah';
If I print_r($_SESSION) at the end of the page they are there, then in subsequent page requests they are gone. The session array exists, but does not contain all of the data that I set. It's like they are not getting really registered with the session. Has anyone run into anything like this before? Any thoughts or solutions?
Before anyone asks, yes session_start(); is called at the top of the page.
Thanks.