Posted by Michael Fesser on 11/06/07 12:44
..oO(Rik Wasmus)
>On a header redirect, the user effectively 'aborts' as soon as he got it.
A header() call doesn't sent the header out immediately. This would make
the second parameter pretty useless and would also let headers_sent()
return TRUE after the first header() call, which is not the case.
Even on a redirection header the script continues to run until it
reaches the end or an exit() call, so IMHO the OP's script should work
as expected.
Micha
[Back to original message]
|