Anti-Spam Techniques In PHP, Part 1
Technique 2: Rewriting
This technique is used commonly by people who post to forums, blogs or discussions to keep their email address human-readable, but without using standard symbols like @ and period. This means if anyone wants to email you they will have to type out your email address manually, but at least if somebody has gone to that effort it’s unlikely they are sending you spam.
So basically what we are doing here is to turn an email address that looks like antispam@example.com into antispam [AT] example [DOT] com, or something along those lines.
Once again, Smarty has built in functionality for this, once again using the escape modifier.
{assign var='email' value='antispam@example.com'}
{$email|escape:'mail'}This will output
antispam [AT] example [DOT] comThere’s no point in making this a hyperlink as it would not be valid anyway.
To achieve this without Smarty, use something like this:
function escapeEmail($string) { return str_replace(array('@', '.'),array(' [AT] ', ' [DOT] '), $string); } $email = 'antispam@example.com'; echo escapeEmail($string);
A further technique you could employ is to use random replacements for multiple email address, so each time you show an address it could be different, like antispam [AT] example [DOT] com, then antispam AT example DOT com, just simple variations like that which make harvester writers have to work that extra bit harder.

