Quote:
Originally Posted by Genjutsu
yes, the redirection method determines what referer is shown.
For example, using a php header redirect would show site A as bieng the referer.
<?PHP
header('Location: http://www.example.com/');
?>
|
I know the method decides the referer, my query is, can the method result into two different referers for the client side and server side.
My current method shows(on the client side) SiteB as the referer, I want to make sure what I see on the client side mirrors what is recorded on the server side.
I am using
echo $_SERVER['HTTP_REFERER'];
(which is server side) to show me (client side) who the referer is. I don't want to make a mistake of believing I have set up the right referer yet there is another variable storing a different referer?