Possible Duplicate:
how do i check if session_start has been entered?
Is there such an API?
Possible Duplicate:
how do i check if session_start has been entered?
Is there such an API?
You can find out by calling the following code:
if(isset($_SESSION))
{
//The session was started
}