How to null and/or alter the value of referring URL?
I'm using Google Analytics and other some Analytics services. I found they are tracking Referral URL.
So I want to hide Referral URL from Traffic Analysis Tools
(e.g.:- modify $_SERVER["HTTP_REFERER"]; value to facebook.com on localhost)
index.php
<a href="get_referer.php"> Click Here</a>
get_referer.php
<?php
$referer = $_SERVER["HTTP_REFERER"];
echo $referer ;
?>