Or is there a software to auto generate random passwords?
This is how I do it.
$pw = ""; for ($i = 0; $i < 13; $i++) { $pw .= chr(rand(33, 126)); }