NGh5A64hqwtM3MFd
eFSmwwKekG7xxmuB
BLbbguE6ntBMNAG9
vEXqMBELp2c6UDCB
srtHKXBr4wDWfbqR
ETSCFS5fMABJ2gqa
eHbb8Tc5Lnp5Sgba
4W9NhdqpWanBkapV
4S2F3u6awA3sPPmm
w6W2ttULTErP7bTS
n6m6ufMmf8r7XLP8
9fFK9TJD5Wctvqs3
qq7k8HAsfeuCKsPB
652WfsepgeCKNP44
RRFmFgApsnf6rRtT
6VDghNBwNCEBh2Fx
<?php
echo '<code>';
$chars = "qwertupasdfghkxcvbnm";
$chars .= "23456789";
$chars .= "WERTUPLKJHGFDSAXCVBNM";
srand ( (double) microtime() * 1000000 );
for( $w = 0; $w < 16; ++$w )
{
$password = "";
for( $c = 0; $c < 16; ++$c )
{
$password .= substr( $chars, rand() % ( strlen( $chars ) ), 1 );
}
echo $password;
echo "<br />\n";
}
echo '</code>';
?>