Quote:
Originally Posted by fuzebox
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]);
|
Thanks buddy, I will look into this
