Ok.
<?php
$mystring = "me@xxxxxxx";
#How can I generate $mystring in ascii characters?
echo ??($mystring);
?>
lists-php wrote:
that's not UTF, rather just the html representation of the ascii
codes for the characters. [someone else has already pointed you to an
ascii table.]
when put in the context of the "mailto:" it's actually fairly easy
for a bot to identify and decode (i'm not saying that they do, but
it's not hard). if you're going to use this approach you may want to
make the e-mail addresses user-readable, but unlinked. while still
easily decoded, most bots won't waste time trying to decode every
string like that that they encounter (at least not yet).
- Rick
------------ Original Message ------------
Date: Thursday, May 29, 2008 07:08:34 PM -0400
From: John Taylor-Johnston <jt.johnston@xxxxxxxxxxxxxx>
To: PHP-General <php-general@xxxxxxxxxxxxx>
Subject: PHP Code I Must find
A web site deploys what I think are UTF characters to mask email
addresses.
Is there there a php function I can use to generate this? Or was
this hand-done?
It is crackable, but a darned good stab at the problem of spiders
at the same.
Any feedback, info or code would be appreciated,
John
John Taylor-Johnston wrote:
My source is this page:
http://www.grandlodge.mb.ca/contact.html
John
/<div align="center">To report a technical problem with this site
please <a
href="mailto:webmaste
4;@grandlodg
01;.mb.ca">contact the
webmaster</a>.</div>/
/In UTF code:
mailto:webmaster
4;grandlodge�
46;mb.ca
would be this in latin characters:
mailto:webmaster@xxxxxxxxxxxxxxxx/
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
---------- End Original Message ----------