Quick & simple split-tester

Status
Not open for further replies.

nis

New member
Mar 4, 2007
357
4
0
Im gently easing into arbitrating and whipped up this quick and simple splitter to test several designs:

Code:
<?php
# Add as many templates here as you like.
# Examples: '1.html', 'subfolder/index.html', 'something_other.html'
$template_paths = array(
	'1.html',
	'2.html',
	'3.html',
);

# The name of the dir that holds the templates
# Should end in a slash: /
# Default: 'templates/'
# (Use '' if you want the templates to be in the same dir as this script.)
$templates_dir = 'templates/';

include($templates_dir.$template_paths[rand(0, count($template_paths)-1)]);
exit;
?>

Make a folder on your domain, "your_kickass_niche". In that directory make a file named index.php and paste the above code in it. Make a folder named templates and put your arbi-sites in there.

Change the paths in $template_paths to match yours. And you're set to go.

Ask any questions you might have, and Ill see if I can answer them.
 


In each template, you need to tag your links to know which landing page made the sale, so you can actually know which is performing better.

Without that, you are only offering up different pages, not knowing is some suck or some rock.
 
Of course you need to track your links. It goes without saying, obviously.
Thats what channels are for in Adsense.
 
You use some other method of tracking. I haven't seen any ad-server that cant do something like channels in Adsense.
 
Status
Not open for further replies.