maxudaskin Posted August 3, 2008 Share Posted August 3, 2008 Is it possible to see if session_start() has already been called? Link to comment https://forums.phpfreaks.com/topic/117894-check-session-already-started/ 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... Link to comment https://forums.phpfreaks.com/topic/117894-check-session-already-started/#findComment-606455 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.