I have a blanking referrer script that works in Internet explorer but I need it to work across all major browsers like google chrome, firefox, safari and opera. I only want to spend 10 dollars. I would like this project completed within the next 12 hours. The Script can be seen at http://freefederalscore.com/ as you can see if you copy the link into internet explorer and hit the script button on the webpage the script works. But if you try to hit the script button in google chrome or firefox it does not work.
Please notice in Internet Explorer when the script redirects to whatsmyip.org if you scroll down to “browser information” the “referred from” field says “direct visit”. When the script is finished and works in other browsers it should always say “direct visit”
The actual script is
<?php
$mylink[1] = ‘http://www.whatsmyip.org/more/ ‘;
//$mylink[2] = ‘google.com ‘;
//$mylink[3] = ‘google.com ‘;
//$mylink[4] = ‘google.com ‘;
$id = rand(1,count($mylink));
$referer = $_SERVER[‘HTTP_REFERER’];
if($referer == “”)
{
echo “<meta http-equiv=\”refresh\” content=\”0;url=$mylink[$id]\” />”;
}
?>