Tag Archive | "letters"

PHP : Random string with numbers and letters

Monday, October 1, 2007

6 Comments

I thought that some of you might find it useful to learn how to generate a string with random numbers and letters. I wrote a quick function for generating a string like this. See it below : function genRandomString() {     $length = 10;     $characters = ‘0123456789abcdefghijklmnopqrstuvwxyz’;     $string = ”;         for [...]

Continue reading...