shane18 Posted December 18, 2009 Share Posted December 18, 2009 Can SESSION_START(); possibly fail? Link to comment https://forums.phpfreaks.com/topic/185547-session-fail/ Share on other sites More sharing options...
teamatomic Posted December 18, 2009 Share Posted December 18, 2009 Yes, usually its because you output something before you start the session, but how do You know its not starting? Try this: session_start(); if (isset($_SESSION)) { echo "Session Started<br>"; } else { echo "No session Started<br>" } Link to comment https://forums.phpfreaks.com/topic/185547-session-fail/#findComment-979654 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.