Headers Already Sent

Peter

Verified User
Joined
Jan 15, 2004
Messages
97
Warning: Cannot modify header information - headers already sent by (output started etc....

thats the message i am getting at almost PHP script.... what to do?
 
This one at another domain.....
Warning: Warning: session_start(): Cannot send session cookie - headers already sent by (output started
 
That means something is being outputted before another "header()" function is called... check the code to make sure you arn't echo/printing anything before calling the header() function. (header must come before anything else is printed, if you use it)

John
 
Back
Top