Im gently easing into arbitrating and whipped up this quick and simple splitter to test several designs:
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.
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.