
13th May 2005, 13:47
|
|
Junior Member
|
|
Join Date: May 2005
Posts: 2
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
Hiding email addresses
Is it possible to hide email addresses from spam harvesters in HTML pages? The email address should remain clickable and readable for humans...
Myles
|

14th May 2005, 22:50
|
|
Junior Member
|
|
Join Date: Apr 2005
Posts: 23
Thanks: 0
Thanked 1 Time in 1 Post
|
|
I heard that using javascript to print the email address sometimes helps. something like
Code:
document.write('email@domain.com')
since most harvesters don't process javascript.
|

17th May 2005, 13:15
|
|
Junior Member
|
|
Join Date: Apr 2005
Posts: 4
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
Look at this page:
http://www.mways.co.uk/prog/hidemail.php
I'm always using it to encode my email addresses.
|

1st December 2005, 16:25
|
|
Junior Member
|
|
Join Date: Dec 2005
Location: Waterloo, ON (Canada eh!)
Posts: 13
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
Email Scrambler!
I use a little javascript I found at dynamicdrive.com... It's pretty clever as it allows you to pick a word or symbol to use in place of "@" when you enter a "mailto:", but when you click on the "mailto:" link, the javascript replaces your symbol with "@"!... It's rediculously easy to use...
Get it here! http://www.dynamicdrive.com/dynamici...lscrambler.htm
|

1st January 2006, 18:01
|
|
Junior Member
|
|
Join Date: Jan 2006
Posts: 5
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
replace all email addresses in ur website with transparent graphics (gif/png)
example: http://www.freefm.de/modules.php?nam...howpage&pid=12
and add this little code as image link
PHP Code:
<a href="mailto.php?to=emailaddress&subject=emailsubject"><img src="image.gif" alt="mailme" title="mailme" border="0"></a>
mailto.php:
PHP Code:
<?php
$name=$_GET['to'];
$subject=$_GET['subject'];
// echo "mailto:".$name."@domain.tld?subject=".$subject;
header("Location: mailto:".$name."@domain.tld?subject=".$subject);
exit;
?>
|

1st December 2008, 13:09
|
|
Junior Member
|
|
Join Date: Dec 2008
Location: hawaii
Posts: 1
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
Hiding email addresses
hi...
I use a little javascript I found at dynamicdrive.com... It's pretty clever as it allows you to pick a word or symbol to use in place of "@" when you enter a "mailto:", but when you click on the "mailto:" link, the javascript replaces your symbol with "@"!... It's rediculously easy to use...
I'm always using it to encode my email addresses.
|
| Thread Tools |
|
|
| Display Modes |
Linear Mode
|
Posting Rules
|
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is Off
|
|
|
All times are GMT +2. The time now is 14:42.
|
Recent comments
6 hours 9 min ago
11 hours 25 min ago
11 hours 36 min ago
11 hours 44 min ago
12 hours 46 min ago
14 hours 54 min ago
17 hours 19 min ago
17 hours 37 min ago
17 hours 45 min ago
19 hours 1 min ago