maxudaskin Posted August 3, 2008 Share Posted August 3, 2008 Is it possible to see if session_start() has already been called? Quote Link to comment Share on other sites More sharing options...
JasonLewis Posted August 3, 2008 Share Posted August 3, 2008 If you need to: if(session_id()){ echo "Session started!"; }else{ echo "Session not started!"; } Really you should know though... Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.