// archives

Random Password Generator

This tag is associated with 1 posts

Random Password Generator

PHP password generator is a complete, working random password generation function for PHP. It allows the developer to customize the password: set its length and strength. Just include this function anywhere in your code and then use it. Source : http://www.webtoolkit.info/php-random-password-generator.html function generatePassword($length=9, $strength=0) { $vowels = ‘aeuy’; $consonants = ‘bdghjmnpqrstvz’; if ($strength & 1) [...]

Share

Enter your email address:

Delivered by FeedBurner