Wrote it again
PHP Code:
// $Id: obfuscate_emails.php,v 1.4 2003/06/18 17:59:08 alex Exp $
function make_mail_link($title, $address) {
$address = strval($address);
$len = strlen($address);
$obfuscated_address = '';
for($i = 0; $i < $len; $i++) {
$obfuscated_address .= '&#' . ord($address[$i]) . ';';
}
return('<script language="JavaScript">' .
"\n<!--" .
"\ndocument.write('<a href=\"ma' + 'il' + 'to' + ':'" .
"\n + unescape('" . urlencode($obfuscated_address) . "')" .
"\n + '\">' + '" . htmlentities($title) . "' + '</a>');" .
"\n// -->\n</script>");
}
Just use echo make_mail_link('title of link', 'email@address.com');
Example:
http://www.macusers.org/email.php
Source:
http://www.macusers.org/email.phps
edit: I could make this into a hack that obfuscates all [email] bbcode...