Using PHP to Generate Strong Password
If you want to have very strong password to protect your account, here is the code for : <code> <?php  function generatePassword($length=9, $strength=0) {    $vowels = ‘aeuy’;    $consonants = ‘bdghjmnpqrstvz’;    if ($strength & 1) {        … Read moreUsing PHP to Generate Strong Password