View Single Post
Old 04-26-2025, 09:06 AM  
fuzebox
making it rain
 
fuzebox's Avatar
 
Industry Role:
Join Date: Oct 2003
Location: seattle
Posts: 22,004
Quote:
Originally Posted by Sloane View Post
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]);
fuzebox is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote