Digital Colony is the ad-free technical web site for Michael Allen Smith of Seattle, WA.
Amazon Link ASP.NET Report DeepFitness API Geocoding GridView Highlighter Mask Email SmugMug
Microsoft Silverlight 4 Business Application Development: Beginners Guide by Cameron Albert
<?php function maskEmail($email) { $maskedEmail = ''; for ($j = 0; $j < strlen($email); $j++) { $maskedEmail .= '&#' . ord(substr($email, $j, 1)) . ';' ; } $emailHtml = '<a href="m&#' . ord('a') . ';&#' . ord('i') . ';&#' . ord('l') . ';&#' . ord('t') . ';o:' . $maskedEmail . '">' . $maskedEmail . '</a>'; return $emailHtml; } ?> <p>For more information email me at <?php echo maskEmail('someEmail@someDomain.net') ?>.</p>
Labels: Email, PHP, Security
posted by MAS on May 31,2007
If you found this site helpful, consider buying me a cup of coffee.
Digital Colony Copyright © 1999-2010 XHTML 508 Try...Catch Disclaimer: For brevity many examples do not include error handling. That is your responsibility.