Double Meta or Header Location

bpicks

Junior Member
Joined
Apr 16, 2008
Messages
147
Reaction score
23
I have a question for the php gurus here.

Instead of doing the usual meta redirect:
PHP:
<?
echo '<meta http-equiv="refresh" content="0;url=URL1">';
?>

Will this also hide the referrer?
PHP:
<?
header("Location: URL1"); 
?>

or do you have to use the meta tags?
 
Back
Top