Random Password Using PHP
A function that generates strong passwords by mixing uppercase and lowercase characters with numbers.
|
On Tuesday, June 10th 2008 at 03:02 PM By Andrei Pociu (View Profile)
    (Rated 4 with 2 votes) |
Contextual Ads
More PHP Resources
Advertisement
function RandPass($PassLength)
{
$PassStr = "";
for ($i = 0; $i <= $PassLength; $i++)
{
$CurrChar='';
{
case 1:
break;
case 2:
break;
case 3:
}
$PassStr .= $chr;
}
return $PassStr;
}
|
Digg It!
Del.icio.us
Reddit
StumbleIt
Newsvine
Furl
BlinkList
|
|
Rate this code snippet
Current Comments
|
Related Source Code
There is no related code.
Related Tutorials
There are no related tutorials.
PHP Job Search
|