Thanks bb. I was thinking more along the lines of the same domain randomly sending traffic to 2 different networks...What should I do for code? Something like this? :
<?php
if(rand(0,1) == 0) {
header("Location: http://www.affiliatenetworkA");
} else {
header("Location: http://www.affiliatenetworkB");
}
?>
<?php
if(rand(0,1) == 0) {
$link = 'http://www.neverblueads.com/afflink';
} else {
$link = 'http://www.copeac.com/afflink';
}
?>
<script language="javascript">
window.location='<?=$link?>';
</script>
<meta http-equiv="refresh" content="0;url=<?=$link?>">
Forgot to mention that you can also just use the conversion pixel in conjunction with the link rotator.If you're able to get your Google conversion pixel placed on the confirmation pages of the offer in both networks, just run two separate ads in Google, and create separate landing pages (same page, just change the destination link). That way, you won't have to bother matching up sub-ids, and can just eyeball the conversion stats within AdWords.
<?php
//just add urls to this array and they will be thrown into the mix
$urls = array (
"http://nbjmp.com/click/?s=12413&c=50881", //beach bum
"http://nbjmp.com/click/?s=12413&c=47156", //SEO Supervisor
"http://www.nickycakes.com/links/neverblue" //neverblue
);
$redirect = $urls[rand(0,count($urls)-1)];
Header( “Location: ” . $redirect );
?>