I have two processes. The first (#1) sets some session variables and also creates a cookie with the session_id in it. The second (#2)reads the cookie and runs this code:
session_id($_COOKIE['cookie_session']);
session_start();
I stop the code after the session start and I then look with the debugger at the $_SESSION
(in #2). All I see in the is _ci_last_regenerate
. My session variables are not in there. Why?