12-11-2007, 05:04 AM
|
#7 (permalink)
|
|
The Contributor
Join Date: Dec 2007
Posts: 60
Thanks: 5
|
You can use a lot of things..
PHP Code:
$pass = substr( md5( mt_rand() ), 0, mt_rand( 6, 12 ) ); $pass = substr( uniqid( mt_rand(), true ), 0, mt_rand( 6, 12 ) ); // it goes on and on xD
|
|
|
|