Quick Search:
 
 PHP Code: Generate random string Jump to:  
Category: >> PHP Code >> Generate random string  

<< lastnext >>

Snippet Name: Generate random string

Description: This will return a character based on the give input number. All you have to do is feed it a random number and x amount of times.

Also see:
» Random Image from Directory
» Random banner picker
» Rounded random numbers
» Random Pronounceable Passwords
» Pick Randomly from Array
» Weighted Random Choice

Comment: (none)

Language: PHP
Highlight Mode: PHP
Last Modified: March 16th, 2009

<?PHP 
 
$Length = 5; //length of string 
$Start = 65;  //Where to start from on ascii table 
$End = 90;   //where to end on the table 
 
FOR($K = 0; $K < $Length; $K++){ 
    $Str .= CHR(ROUND(RAND($Start, $End))); 
} 
 
ECHO $Str; 
 
?>


 
   Home |    Search |    Code Library |    Sponsors |    Privacy |    Terms of Use |    Contact Us © 2003 - 2024 psoug.org