//this is how many times you wish the email
//addresses to display
$max_times = 100;
//random word function
function random_word()
{
$seed = (integer) md5(microtime());
mt_srand($seed);
$word = mt_rand(1,99999999);
$word = substr(md5($word), mt_rand(0, 19), mt_rand(6, 12));
return $word;
}
//loop $max_times
for($i = 0;$i <= $max_times;$i++)
{
$msg = random_word();
$msg2 = random_word();
echo "email address $i";
echo "
";
}
?>