View Single Post
Old 2006-10-24, 12:19 PM   #1
Roni20
Heh Heh Heh! Lisa! Vampires are make believe, just like elves and gremlins and eskimos!
 
Roni20's Avatar
 
Join Date: Dec 2004
Posts: 79
50/50 php traffic filter

Hi

I'm looking for script which will send first clickt to address1 second click to address2 third click to address 1 etc...

I have something like this
PHP Code:
<?
$a
=rand(0,1);
if(
$a==0){
      
Header("Location: http://www.google.com");
}
   else{
     
Header("Location: http://www.yahoo.com");
}
?>
it's almost ok because here is 50% chance that will be 0 or 1, but here can be 3 times in turn 1 next can be 5 time in turn o etc. I need exactly 50/50.

Can you help ?
Roni20 is offline   Reply With Quote