I've got two contextual ads running on a page and I've got a ton of PPC traffic incoming. I want to use the PHP redirects I'm using now but send half to one offer and half to another to see what converts better.
Here is the code I'm using in the PHP file:
So each of these "redirect-name" should split their time equally amongst two different actual offers...
Any help? T.I.A.
Here is the code I'm using in the PHP file:
Code:
<?php
$offer = $_GET['offer'];
$type = $_GET['type'];
if ($offer == "redirect-name1")
{$jumplink= "http://offerurl.com";}
if ($offer == "redirect-name2")
{$jumplink= "http://offerurl.com";}
header("Location: ".$jumplink."&sub=".$type."");
?>
So each of these "redirect-name" should split their time equally amongst two different actual offers...
Any help? T.I.A.