Split Testing - Prosper Script
Here is the script:
<? //Tracking202 Offer Rotation Script //enter your affiliate urls below, you can enter as many as you want, please //make sure that you have the affiliate url with the SUBID syntax at the end //of it, for reference goto: subids.com for more information. $offer[1] = 'http://myaffiliateurl.com?subid='; $offer[2] = 'http://myaffiliateurl2.com?subid='; $offer[3] = 'http://myaffiliateurl3.com?subid='; //this is the text file, which will be stored in the same directory as this file, //count.txt needs to be CHMOD to 777, full privlledges, to read and write to it. $myFile = "count.txt"; //open the txt file $fh = @fopen($myFile, 'r'); $offerNumber = @fread($fh, 5); @fclose($fh); //see which landing page is next in line to be shown. if ($offerNumber >= count($offer)) { $offerNumber = 1; } else { $offerNumber = $offerNumber + 1; } //write to the txt file. $fh = fopen($myFile, 'w') or die("can't open file"); $stringData = $offerNumber . "\n"; fwrite($fh, $stringData); fclose($fh); //grab the subid that t202 adds $subid = $_GET['subid']; //redirect to the affilate url, + add the subid at the end header('location: ' .$offer[$offerNumber] . $subid); ?>
What if instead of adding CPA network links to the script, I add t202 campaign direct links and or t202 landing pages?
Then I drive traffic to mydomain.com/rotate.php?subid=
That way t202 should track the traffic sent to each campaign.
Is that correct? Anyone have done this?
Thanks
-
jonhkh17 -
Thanks - 1 reply
{{ DiscussionBoard.errors[7235308].message }}-
MathewMaso -
Thanks
{{ DiscussionBoard.errors[7235435].message }} -
-
-
jonhkh17 -
Thanks - 1 reply
{{ DiscussionBoard.errors[7236738].message }}-
jonhkh17 -
Thanks
{{ DiscussionBoard.errors[7236791].message }} -
-