/ Published in: PHP
Expand |
Embed | Plain Text
function auth_pwgen(){ $pw = ''; $c = 'bcdfghjklmnprstvwz'; //consonants except hard to speak ones $v = 'aeiou'; //vowels $a = $c.$v; //both //use two syllables... for($i=0;$i < 2; $i++){ } //... and add a nice number return $pw; }
Comments
Subscribe to comments
You need to login to post a comment.

I dig it, I'll have to try and remember to use this!
I built a little page for this: http://www.natenolting.com/passgen/passgen.php http://www.natenolting.com/passgen/passgen.txt
I dig it, I'll have to try and remember to use this!
I built a little page for this: http://www.natenolting.com/passgen/passgen.php http://www.natenolting.com/passgen/passgen.txt
Cool!