skip to Main Content
author
268 views
1 vote

how to avoid getting error on session start – CPanel

<?php
if(session_id() == '' || !isset($_SESSION))
session_start();
?>

i have this line of code in all my pages… and

Back To Top
Search