Math
Random number (86)
Date Published: October 20, 2009
 <?php 
          
  
echo mt_rand(110000) . "<br />"
  echo 
mt_rand(110000) . "<br />"


?>  
Produce random string using different character types (124)
Date Published: October 20, 2009
 <?php
$string 
"abcdwxyz456789";  
for(
$i=0;$i<25;$i++){  
    
$pos rand(0,13);  
    
$str .= $string{$pos};  
}  
echo 
$str;

?>