
If you post your email on line expect it to be spammed. Here is a script that extracts the emails from twitter posts…
<?php
$file = file_get_contents(“http://search.twitter.com/search?q=gmail.com+OR+yahoo.com+OR+msn.com+OR+aol.com+OR+hotmail.com++OR+%22email+me%22+OR+%22contact+me%22″);
$file = strip_tags($file);
preg_match_all(
“([a-z0-9!#$%&'*+/=?^_`{|}~-]+(?:\.[a-z0-9!#$%&'*+/=?^_`{|}~-]+)*@(?:[a-z0-9](?:[a-z0-9-]*[a-z0-9])?\.)+(?:[A-Z]{2}|com|org|net|gov|mil|biz|info|mobi|name|aero|jobs|museum)\b)siU”,
$file,
$matches);
echo ‘<pre>’;
print_r($matches);
echo ‘</pre>’;
?>
Please read our warnings about these posts.