Headers help

lgpro01

New Member
Messages
9
Reaction score
0
Points
0
Hi does anyone know how i could fix this problem?

Warning: session_start() [function.session-start]: Cannot send session cache limiter - headers already sent (output started at /home/*******/public_html/****/***.php:8) in /home/******/public_html/*******.php on line 3
 

DeadBattery

Community Support Team
Community Support
Messages
4,018
Reaction score
120
Points
0
*****Thread Moved to Programming Help*****
Make sure that functions like session_name or session_start are the first things sent to the browser. If you have HTML or any other types of output before those functions, it won't work.
 
Top