All pastes #568494 Raw Edit

Stuff

public text v1 · immutable
#568494 ·published 2007-06-15 15:49 UTC
rendered paste body
/**
 * Function to start the session if required.
 */
function startSession()
{
  global $_SESSION;
  if (!isset($_SESSION)&&!$_SESSION)
  {
    session_start();
  }
}