Able to Echo before header()

t3st3r

New Member
Came across something strange while migrating to my new server.I have a script that will redirect users to another web page based on certain conditions. What I was doing, however, is echoing out 'Redirecting...', then using the header() function to actually redirect. Here is how the code looked:\[code\]if( $condition ) { echo 'Redirecting...'; header( 'Location: ' . $url );}\[/code\]Now I only noticed that this is incorrect after switching over to our new server, tested it out, and saw that it would NOT redirect just output Redirecting... and once I searched about it, learned you cannot have any kind of output (unless using ob_start etc) before using the header() function.Question is, why is this code, that should NOT work in ANY PHP installation, work on my old server? It will redirect with the echo before header() no problem.Thanks!
 
Back
Top