Help for this page

Select Code to Download


  1. or download this
    srand( (time() ^ ($$ + ($$ << 15)) );
    
  2. or download this
    $random=join("", 'a'..'z','A'..'Z','0'..'9','.','/');
    
  3. or download this
    @r=('a'..'z','A'..'Z','0'..'9','.','/');
    $salt=$r[rand(@r)].$r[rand(@r)];