Random letters with PHP
Since it was no already function for random letters in PHP i was google on it and found this one some where i do not remeber but works exemplary. function randomletters() { $chars = “abcdefghijkmnopqrstuvwxyz023456789″; srand((double)microtime()*1000000); $i = 0; $pass = ” ; while ($i <= 7) { $num = rand() % 33; $tmp = [...]