I want to redirect the page by using tag in the header, but it's not working.
|
At the top of your page add the following (before any html or php):
If that redirects you (to the homepage of an awesome programmer) then you need to check that you have not output any content before using this header() function. The header() function needs to be called before ANY content is sent to the user. |
|||
|
|
|
Most usual reason of this is "headers already sent" error. Thus, you have 2 problems to solve.
One exception is BOM - Byte Order Mark, a symbol, being put into your files silently by some editors. Just use "Save without BOM" feature. |
||||
|
|
|
You need:
It might not work because you have some php output before the header make sure there are no empty spaces or any characters, or ECHOs outputted before the headers function. Usually it will give an error and you can located where you have this extra space something like "Headers already sent by page on line 1 in index.php" |
||||
|
|
|
As some have pointed out, you have to output headers before content. The ideal way to do this is to separate your business logic and presentation logic into different parts, but sometimes you're stuck with legacy code that doesn't do this. In this situation, PHP's output control functions can be useful; use ob_start() and ob_end_flush() to capture your output then flush it at the end. This allows your code use header() more or less anywhere, e.g.
The above code will give you the error about headers already being sent, but the following code will work.
In this case, the output from echo() is not sent until ob_end_flush(), so the header() call works correctly. This approach can be used to wrap legacy code that doesn't properly separate business and presentation logic. |
|||
|
|
by using header tag- what exactly "tag" used?its not working- what exact result you've got? – Your Common Sense Apr 9 '10 at 6:04