Easy Split Testing

Status
Not open for further replies.


Poor Man's way is just to split your ads on Google, same ad, but landing page URL is different. Do it on 1 or 2 high volume keywords and track clicks vs sales on each page. Not perfect, but quick and easy.
 
Man, just put some PHP to load one or the other as needed:


Code:
<?php
srand((double)microtime()*1000000); 
if (rand(0,1)>.5) {
    include("landingpage1.php";
} else {
    include("landingpage2.php";
}
?>
And of course, use different AdSense channels on each landing page (or affiliate sub IDs), so you know which one performs better.

Not really sure, but this code may even have already been posted around here.

Edit: PHP syntax coloring is cool, but looks like shit on this dark grey background.
 
Kinda hard to split-test with only one sale every 4 days or so. Fuck, time to try again...
 
Status
Not open for further replies.