Quote:
Originally Posted by Sloane
You are correct, but I am unable to split the popunders 50/50 between the two different URL links with my script. I guess I could do it manually every 24 hours.
|
You could just host a quick file that randomly sends to either url and set that as the popunder.
$urls = array("https://url.one","https://url.two");
shuffle($urls);
header("Location: ".$urls[0]);