PHP main issue Header Already Sent Warning.Deal with it through an easy approach.
“Header already sent” error and other use of Header function in PHP
Useing the Header() function you can do the following things
1) Redirect your user to some other page.
2) Tell the browser not to cache your files
3) Content Disposition.
“Header already sent” error
Most of the PHP learner (including me) has spent hours in debuging this problem. This problem happens while using session variables. While using session variables you must initialize the session using the function session_start(), and the problem occurs here.
This problem has got an unbelievebly simple solution, just start the PHP block (where you have written the session_start() at the very first line of the page.
To elastrate this
<?php
session_start();
?>
is OK. But
<HTML>
<?php
session_start();
?>
is wrong.
Again , you can not even leave a blank line above the PHP code as it is considered as HTML code
<?php
session_start();
?>As you can see there is a blank line above thePHP block , this will raise error.
Another example ,
<?php
echo ‘Hello’;
session_start();
?>will give error as the statement “echo ‘Hello’ output an HTML on the page before “session_start();” is executed .
So , the bottomline is do not output anything before the session_start() is executed.
1) Redirect your user to some other page.
You can redirect you user to some other page using the code “Location” parameter of header() function.
<?php
header ( “Location: http://www.koderguru.com/” ); /* Redirect browser */
/* Make sure that code below does not get executed when we redirect. */
exit;
?> This code will redirect your user to the page http://www.example.com.
Warning : The statement
“header ( “Location: http://www.example.com/” );”
does not generate 302 response, that mean the page will be redirected but it will not be counted as a hit to “www.koderguru.com”, so the target page looses a hit count. To avoid this use the following code.
<?php
header (‘HTTP/1.1 301 Moved Permanently’);
header (‘Location: http://www.koderguru.com’);
?>
This code generates a 301 status and hit count of “www.koderguru.com” will increase.
Also , you can redirect after some interval , using the code
// Redirects the browser after $sec seconds
header(“Refresh: $sec; http://www.mistonline.in” );
should be:
header(“Refresh: $sec; url= http://www.mistonline.in” );
2) Force the browser not to cache the pages.
You can do this with the code
<?php
// Date in the past , tels your browser the cache has already expired
header ( “Expires: Wed, 06 Jul 2006 05:00:00 GMT” );
// Here the line tells the browser that the last modification date of this page is right now
//So it must reload the page
header ( “Last-Modified: ” . gmdate ( “D, d M Y H:i:s” ) . ” GMT” );
// HTTP/1.1
header ( “Cache-Control: no-store, no-cache, must-revalidate” ); // do not cache/store this page
header ( “Cache-Control: post-check=0, pre-check=0″ , false );
// HTTP/1.0
header ( “Pragma: no-cache” );
?>
3) Content Disposition.
You can also generate different type of content other than html , using Header() function
<?php
// We’ll be outputting a PDF
header ( ‘Content-type: application/pdf’ );
// It will be called downloaded.pdf
header ( ‘Content-Disposition: attachment; filename=”downloaded.pdf”‘ );
// The PDF source is in original.pdf
readfile ( ‘original.pdf’ );
?>
Incoming search terms:
- functional inurl:/register intext:upcoming intext:published intext:submit -inurl: php (9)
- header already sent error in php (8)
- how to prevent header alreay sent in php (5)
- javascript send headers (4)
- years inurl:/guestbook php?page= (4)
- header function in php (3)
- how to avoid header already sent in php (3)
- What is use of header() function in php ? (3)
- headers already sent error in php (2)
- mpdf header error (2)
- header already sent error wordpress (2)
- header already sent php error (2)
- header already sent when invoke rediderct function in wordpress (2)
- php prevent header already sent (2)
- header function header already sent error (2)
- mpdf error checking (2)
- how to handle headers already sent error in php (2)
- header() function in php (2)
- wordpress header location error (2)
- what is use of header function in php (2)
- header already sent in php interview questions (2)
- php header already sent obj_start (1)
- php header avoid already sent (1)
- php header image error (1)
- php avoid header sent by file (1)
- php header location target does not work after alert javascript (1)
- php header when content already sent (1)
- php headers already sent by (php header already sent error) (1)
- wordpress error session_start() comment-template php (1)
- php headers already sent error (1)
- PHP headers aready sent error (1)
- wordpress headers already sent pdf (1)
- php header already sent javascript (1)
- php header already sent error (1)
- php back button session (1)
- php code under header function (1)
- php mysql redirect page without send header (1)
- xampp header location error (1)
- php curl_init error headers already sent (1)
- wp avoiding session_start again (1)
You will also be interested in ,
- Simple Example Of Database Connection Using PEAR In PHP
- Simple Code To Set And Retrieve Cookie Using PHP
- Getting Remote Webpage Info Using PHP
- Get IP address using gethostbyname() function
- How to display popular posts in wordpress
- Date in title bar using php
- Display Tags in wordpress
- Ajax Page With PHP
- Read text file reverse using php
- Lock a text database or file before writing data into it using php

cool….