I am trying to validate whether a session exists or not. For that, I tried the following :
make a new session if :
if(session_id() == '')if(isset($_SESSION))if(session_status() == PHP_SESSION_ACTIVE)
None of the above are working. Any clues where I may be going wrong?
The reason why I am doing this is because I need to do seperate things based on whether a session exists or not - like
if (session exists)
....
else
...