Auto password generator

Do you need a secure password generator for you application? well, here you go: /* *@author: Nurul Ferdous *@URL: http://dynamicguy.com *@Description: Auto Password Generator *$License: GPL */ function generatePass($min,$max,$opt=false){ $min=4;// minimum length of password $max=15;// maximum length of password $pass="";   //to store generated password for($i=0;$i<rand($min,$max);$i++){ $num=rand(48,122); if(($num...
readmore
line
footer
Powered by Wordpress | Designed by Elegant Themes