PHP sessions that have already been started

Try

<?php
    if(!isset($_SESSION)) 
    { 
        session_start(); 
    } 
?>

Leave a Comment