i am work on a project and use php sessions to store some informations. In one script i start the session with session_start() and create some $_SESSION['var']s. In another script i want to get this variables, but there will create a new session with session_start() with a new sessionid. I am not sure whats happend there. Why there will create two different sessions in one project. How to fix that ?
Some php configuration parameters:
session.use_cookies = 1
session.use_only_cookies = 1
session.use_trans_sid = 0
expose_phps= On
The sessionid use cookies.
Best regards,