Is there anyway to do a header("Location bla"); and dump the other headers sent like the $HTTP_REFERER?
Try something like:
header("Location Blah");
Use that in each page calling header.
Then have:
function header($title = "") { echo "<head><title>".$title."</title></head>"; }
Well, hopefully this should help.
huh? I don't think he was asking for that and I also don't think you can re-define php's <b>header()</b> function arbitrarily.
What do you mean by "dump the other headers"??? Print them? or maybe you want to stop them from getting sent to "blah"? or is it that you want to send them on to "blah" from the script where you put <b>header("Location: blah")</b>?
-- Rich