Just wondering how to check if a PHP session exists... My understanding is that no matter what, if I am using sessions, I have to start my files with session_start() to even acc
Check if session exists before calling session_start()
if(!isset($_SESSION))session_start();