one of my php file has include in many different pages. some pages already have session_start, some are not.
therefor i have a add if(!isset($_SESSION)){session_start();}
to check if if session start already been set,
if the session start is not set, it will put into the code
It works fine in my local machine, but when i upload it, i got error
Cannot send session cache limiter - headers already sent (output started at...
anyone know where is the problems?