I want to create a random number not containing an '0' Why? A user may easily confuse a 0 (numerical) with an O (letter).
mt_rand (11, 99) gets a random number between 11 and 99, but that includes 20, 30, 40, 50, 60, 70, 80, and 90.
I'm not sure how to proceed. Any suggestions?
Thanks.