load me on the generate a new one boat but I generate them like this
<?php
function gen_pass() {
$key = array();
$sizes = array('huge','large','big','average','normal','small','tiny');
$colors = array('red','orange','yellow','green','blue','indigo','violet');
$animals = array('cat','dog','fish','mouse','rat','hamster','feret','moose',
'whale','shark','termite','snake','bear','fox','goose','duck',
'rabbit','mole','deer','racoon','spider','elephant','elk','dingo');
$i1 = rand(0,6);
$i2 = rand(0,6);
$i3 = rand(0,24);
$pswrd = $sizes[$i1] . '_' . $colors[$i2] . '_' . $animals[$i3];
return $pswrd;
}
?>