Scripts or resouces to Rotate Landing Pages

Status
Not open for further replies.


<?php

$country = file_get_contents('http://api.hostip.info/country.php?ip='.$_SERVER['REMOTE_ADDR']);

if ($country == 'UK') { header('Location: /uk/index.php'); }
else if ($country == 'CA') { header('Location: /main.php'); }
else { header('Location: /main.php'); }

?>

and

<?php
//just add urls to this array and they will be thrown into the mix
$urls = array (
"http://nbjmp.com/click/?s=12413&c=50881", //beach bum
"http://nbjmp.com/click/?s=12413&c=47156", //SEO Supervisor
"http://www.nickycakes.com/links/neverblue" //neverblue
);

$redirect = $urls[rand(0,count($urls)-1)];
Header( "Location: " . $redirect );


?>


Thanks all!
 
Status
Not open for further replies.