rotating URL

biginch

Regular Member
Joined
Apr 14, 2008
Messages
262
Reaction score
102
Is there a script or a way to set up a rotating url, like a co-op.

For instance, if I were to set up my own campaign with ten people, how would I go about making sure the url is evenly distributed.

Thanks
 
You could simply use a php array with the links and randomize the element number.

Code:
<?php
   $coalition = array{"link1","link2",.....,"link10"};
   srand(time());
   echo $coalition[rand()%9];
?>
 
Last edited by a moderator:
Back
Top