Ascii Encode Email to avoid spambots

Ascii encode

Contact me: (please don't use this address, all email sent to it will be added to a blacklist)

Enter the email address:
Cut and paste results from here to your page
 
function ascii_encode($str){
        global $encoded;
        $encoded="";
    for ($i=0; $i < strlen($str); $i++){
        $encoded .= '&#'.ord(substr($str,$i)).';';
    }
    return;
}

Home | Tips | Contact | Email Obfuscation For Spambots | 00 | 01 | 02 | 03 | 04 | Example PHP Contact Form