So i was given the following php redirect script to be able to mask the referrer for a site. But when i added it to my godaddy.com hosting account nothing worked. I honestly don't know php and maybe i'm missing another file but I'm hoping someone here may be able to help me with this. Any help is much appreciated File 1 Index2.php Just copy and paste the code below and you’re set. <?php $site2 = "http://yoursite"; echo "<body onload=\"javascript:frmClickTracking.submit();\">"; echo "<form action=\"" . $site2 . "\" method=\"post\" name=\"frmClickTracking\">"; echo "</form>"; ?> Second file Index.php <?php $site1 = "http://yoursite/index2.php"; $affiliate_link = "paste yours affiliate link"; if($_SERVER['HTTP_REFERER'] == $site1) { echo "<body onload=\"javascript:frmClickTracking.submit();\">"; echo "<form action=\"" . $affiliate_link . "\" method=\"post\" name=\"frmClickTracking\">"; echo "</form>"; } ?> <html> <body> <iframe src ="my affiliate link" width="100%" height="100%"> <p>Your browser does not support iframes.</p> </iframe> </body> </html>