The Awaken
New member
The HTTP header is sent before you send any HTML to the client.
Thus, if you have a single space in your code... anything at all before you call a function that makes use of the HTTP header (i.e. the "session" call).... it will fail, as the header has already been sent.
For this, you need to make sure your document starts with <?php , without any data before it... then immediately call the "session" function, or whatever resource you are using that makes use of the HTTP header.
Thus, if you have a single space in your code... anything at all before you call a function that makes use of the HTTP header (i.e. the "session" call).... it will fail, as the header has already been sent.
For this, you need to make sure your document starts with <?php , without any data before it... then immediately call the "session" function, or whatever resource you are using that makes use of the HTTP header.