About
Digital Colony is the technical web site for Michael Allen Smith of Seattle.
Category Archives: PHP
Masking Email Addresses in PHP
Steve Waag from Lacanche Ranges was able to translate the ASP in Masking Your Email Address to PHP. <?php function maskEmail($email) { $maskedEmail = ”; for ($j = 0; $j < strlen($email); $j++) { $maskedEmail .= ‘&#’ . ord(substr($email, $j, … Continue reading
