The "Freeola Customer Forum" forum, which includes Retro Game Reviews, has been archived and is now read-only. You cannot post here or create a new thread or review on this forum.
Cheers.
> [URL]http://www.michael-pousen.de/emcrypt.en.htm[/URL]
and from a link on that page [URL]http://vipmeister.com/dl/mailtoencrypter/mailtoencrypter.html[/URL] is the program I was after. Doing it on the fly now, so it's not required. Cheers all.
(Managing director had over 200 forwards this morning as a bot had picked up an unencoded address. Ouch.)
>About a one second google and this seems to be about right:
Well, email encyption didn't return what I wanted. "email obfuscator" was what I was looking for. Forgot the word. Spent the morning modifying a creative commons one, but Nimcos had done the job perfectly. Cheers for that.
function emailTwo($email,$title){
$encoded_email = "";
for ($i=0; $i<=strlen($email)-1; $i++)
{
if (rand(0, strlen($email))>$i) { $encoded_email .= "".ord($email[$i]).";"; }
else { $encoded_email .= $email[$i]; }
}
return ''.$title.'';
}
In Html.
-=-=-=-=
if ($displayRow['email']){
echo '
- ';
echo emailTwo($displayRow['email'], $displayRow['emailtext']);
echo '
}
http://www.wbwip.com/wbw/emailencoder.html
[URL] http://www.wbwip.com/wbw/emailencoder.html [/URL] (If ya'r be the lazy type.)
$email = "[email protected]";
$encoded_email = "";
for ($i=0; $i<=strlen($email)-1; $i++)
{
if (rand(0, strlen($email))>$i) { $encoded_email .= "".ord($email[$i]).";"; }
else { $encoded_email .= $email[$i]; }
}
?>
Cheers.