Hi folks,
I'd like some input on where and when to call the session_start() function. Normally, it's called b4 accessing session variables.
My question is this: at the top of a PHP page, I'll call a class to check if a session has been created or not (Sess::checkLogin). In this function, it'll call the session_start() function. Would I need to call the same function again in any other page or class function I have following that?
Thanks in advance.