Below is a code I found for rotating ads with bhcb
My question is if I use this code will the BHCB referrer hiding option still work?
PHP:
<?php
$random_url = array("http://www.site1.com",
"http://www.site2.com","http://www.site3.com","http://www.site4.com");
srand(time());
$random = (rand()%count($random_url));
header ("Location: $random_url[$random]");
My question is if I use this code will the BHCB referrer hiding option still work?