I am using PHP with Apache, and I use session id's to manage the data associated with a user session. The problem I have is that at one point I go out to PayPal, giving Paypal a return URL. When the session comes back to my page, the session id as reported by session_id() has changed!
All my pages contain the code:
session_start();
$Session_State = session_register("MySession"
$Session_State come back TRUE.
When I run session_get_cookie_params(), all I get is:
lifetime=0
path=/
domain=
secure=
What is happening here?
All my pages contain the code:
session_start();
$Session_State = session_register("MySession"
$Session_State come back TRUE.
When I run session_get_cookie_params(), all I get is:
lifetime=0
path=/
domain=
secure=
What is happening here?