Email address in web interface
- Posted by Aku <akusaya at gmx.net> Jun 28, 2007
- 659 views
Hi Rob. Please, could you NOT put sender email address in the EUforum web interface page? Even if you replace "@" with "at", the simplest address-miner can recognize it. I suggest you to use javascript function to show the email address. Just a simple one like below will work: In the Euphoria code, instead of
puts(email)
change to: sequence raw=sprint(email); puts("<script>document.write(String.fromCharCode(" & raw[2..length(raw)-1] & "))</script>"); Thanks.