PHP Password Generator
PHP Password Generator is small PHP script we are offering
for free. You can either download or copy/paste the PHP code from below.
[ pass.gz (1KB) ]
$password_length = 9;
function make_seed() {
list($usec, $sec) = explode(' ', microtime());
return (float) $sec + ((float) $usec * 100000);
}
srand(make_seed());
$alfa = "1234567890qwertyuiopasdfghjklzxcvbnmQWERTYUIOPASDFGHJKLZXCVBNM";
$token = "";
for($i = 0; $i < $password_length; $i ++) {
$token .= $alfa[rand(0, strlen($alfa))];
}
echo $token;
More PHP Scripts:
|
Commercial Scripts
Free Scripts
Products Sites
Partner Sites
|