Php Programming Code Examples
Php > Code Snippets Code Examples
Spam bots love looking for email addresses, give them a helping hand
Spam bots love looking for email addresses, give them a helping hand
<?php
//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 "<a href=\"mailto:$msg@$msg2.com\">email address $i</a>";
echo "<br>";
}
?>