HI,
If one web page in a folder or directory has an <a href ...> link to another web page in the same folder or directory can you still obtain the HTTP_REFERER ???
So if this is page one:
<html>
<head></head><body><center>
<a href="page2.php">Go to Page 2</a>
</center></body></html>
And this is page two - in the very same folder as page one:
<html>
<head></head><body><center>
<?
echo "The calling or referring page was: " . $_SERVER['HTTP_REFERER'];
</center></body></html>
-------------------------Then...............---------------------------------
What should I expect for the output of page two??? when I click on the link on page one?
Thanks,
I'm not getting anything??????