you could make it more difficult when you replace the href="..." with
href="#". the only problem now is that people without javascript can's use
it.
you can make the onClick part (almost)impossible to harvest by putting
part(s) of the adres into a variable somewhere else in the html-code
like this:

<script>var nospam = 'mail'</script>
<a href="#"
onclick="location.href='mai'+'lto:'+nospam+unescape('%40')+'domain.com';
return false;">mail&#x40;do<!--make it difficult-->main&#x2e;com</a>

the weakest link is now the part between the <a> an </a>


"Curt Zirzow" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> * Thus wrote Gerben ([EMAIL PROTECTED]):
> > just google for it. there are several PHP classes that do that for you.
> > try something like:
> > <a href="mail-at-domain-dot-com"
> > onclick="location.href='mai'+'lto:'+'mail'+unescape('%40')+'domain.com';
> > return false;">mail&#x40;do<!--make it difficult-->main&#x2e;com</a>
>
> Only problem is anything obscured can pretty much be found
>   /(\w+).*(at|@).*(\w+).*(\.|dot).*(\w+)/
>
> Even javascript could be rendered then captured. It all depends on
> the persons dedication on finding them.
>
>
> Curt
> --
> "I used to think I was indecisive, but now I'm not so sure."

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to