<?php
$link[1] = "http://";
$link[2] = "http://";
$link[3] = "http://";
if (!isset($HTTP_cookie_VARS['link'])){
$n = count($link);
$rand = rand(1,$n);
setcookie("link", $rand, time()+3600);
header('location:'.$link[$rand]);
}else{
$go = $link[$_COOKIE['link']];
header('location:'.$go);
}
?>
create two identical ads and send to two diff landing pages
prosper202 script is good, but you'll run into problem if people refresh or bookmark the page and come back (They'll see the content change or two diff landing pages)
Someone modified that prosper202 script and make it cookie based, so the visitor will also see the same lp, http://snipt.org/lmV
Btw, it was nice to meet you at ase
havent tried it...PHP:<?php $link[1] = "http://"; $link[2] = "http://"; $link[3] = "http://"; if (!isset($HTTP_cookie_VARS['link'])){ $n = count($link); $rand = rand(1,$n); setcookie("link", $rand, time()+3600); header('location:'.$link[$rand]); }else{ $go = $link[$_COOKIE['link']]; header('location:'.$go); } ?>