Saturday, August 7, 2010

Multi Auto Redirection

PHP Code:
  /*
  Multi Auto Redirection
  
      /\             / -------
     /     \   _   /    ----------
    / /     \[.. ]/    ---------
   ////// ' \/ `   ------
  ////  // :    : ------
 // /   /  /`    '----
//          //..\\
          ==UU==UU==
             '//||\\`
  
  By opticalpigion
  */
//set the urls   
$urls = array("http://google.com" ,"http://hotmail.com" ,"http://hawkee.com" );  
   
//set the text links   $text = array("Google" ,"Hotmail" ,"Hawkee");  
        
srand(time());  
   
//set the number in (rand()%3); for however many links there are  
        
$random = (rand()%3);   header'Location:'.$urls[$random]) ; ?>

No comments:

Post a Comment