PHP
  Home arrow PHP arrow Page 3 - Email Address Verification with PHP
Dev Shed Forums  
Administration  
AJAX  
Apache  
BrainDump  
DHTML  
Flash  
Java  
JavaScript  
Multimedia  
MySQL  
Oracle  
Perl  
PHP  
Practices  
Python  
Reviews  
Security  
Smartphone Development  
Style-Sheets  
Web Services  
XML  
Zend  
Zope  
Mobile Linux  
App Generation ROI  
IBM® developerWorks  
Forums Sitemap  
E-Commerce Hosting  
Linux Web Hosting  
Managed Hosting  
Small Business Hosting  
VPS Hosting  
Weekly Newsletter

 
Developer Updates  
Free Website Content 
 RSS  Articles
 RSS  Forums
 RSS  All Feeds
Write For Us Get Paid  
Request Media Kit
Contact Us  
Site Map  
Privacy Policy  
Support  
 USERNAME
 
 PASSWORD
 
 
  >>> SIGN UP!  
  Lost Password? 
PHP

Email Address Verification with PHP
By: Alejandro Gervasio
  • Search For More Articles!
  • Disclaimer
  • Author Terms
  • Rating: starstarstarstarstar / 187
    2005-02-08


    Table of Contents:
  • Email Address Verification with PHP
  • Validating the proper format of an email address
  • Validating email domains with checkdnsrr()
  • Customizing checkdnsrr()
  • Using getmxrr() for validation
  • Empowering validation with fsockopen()

  • Rate this Article: Poor Best 
      ADD THIS ARTICLE TO:
      error-file:tidyout.log Del.ici.ous error-file:tidyout.log Digg
      error-file:tidyout.log Blink error-file:tidyout.log Simpy
      error-file:tidyout.log Google error-file:tidyout.log Spurl
      error-file:tidyout.log Y! MyWeb error-file:tidyout.log Furl
    Email Me Similar Content When Posted
    Add Developer Shed Article Feed To Your Site
    Email Article To Friend
    Print Version Of Article
    PDF Version Of Article

     
     
    ADVERTISEMENT


    Email Address Verification with PHP - Validating email domains with checkdnsrr()
    ( Page 3 of 6 )

    In order to check whether a user’s email address actually corresponds to a real domain, we should search for the proper domain records in the DNS. By doing so, we’re making sure that the supplied email address belongs to an existing domain. To do this, we can use a couple of PHP lookup functions that come in handy for addressing these problems.

    The checkdnsrr() function checks DNS records corresponding to a given Internet host name or IP address. It searches the DNS for records of a specific type corresponding to the given host, returning true if any records are found, or returning false if no records are found or if an error occurs.

    It has the following format:

    int checkdnsrr ( string host [, string type]) ;


    The function accepts the following types of records: A, MX, NS, SOA, PTR, CNAME, or ANY, with MX (Mail Exchange) as the default type. So, if no type is provided, the function will search MX records for the given host. In our case, we need to look for MX records according to the host provided within the email address. Therefore, it‘s pretty easy to code a new function, which will take care of checking the existence of the corresponding MX entries for a given host. Let’s write the function to do that:

    function checkEmail($email) {
     if(preg_match("/^( [a-zA-Z0-9] )+( [a-zA-Z0-9\._-] )*@( [a-zA-Z0-9_-] )+( [a-zA-Z0-9\._-] +)+$/" , $email)){
      list($username,$domain)=split('@',$email);
      if(!checkdnsrr($domain,'MX')) {
       return false;
      }
      return true;
     }
     return false;
    }

    The above function accepts a string as an email parameter for checking whether it fits the proper format, and whether the domain is real. In order to obtain the domain part, we split the email address into the username and domain sections, respectively, using the PHP’s split() function, as listed below:

    list($username,$domain)=split(‘@’,$email);

    Now, the $domain variable stores the corresponding domain. Since we’re interested only in this, all we need to do is pass it in as a parameter for the PHP chekdnsrr() function to determine whether it’s a real domain. It will look for the Mail Exchange record in the DNS (remember that the default type is MX), and return true if a MX record is found, which shows that the address displays a valid email domain. If the function returns false, the email domain is not valid. Obviously, an email address that displays a real email domain doesn’t necessarily imply that the user name is valid. We have a big challenge ahead.

    Once we have defined the new function, we could call it this way, assuming that we have an incoming email address from a POST form:

    $email = trim($_POST['email']);  
    if(!checkEmail($email)) { 
    echo 'Invalid email address!';
    }
    else {
     echo 'Email address is valid';
    }

    Our function is very easy to implement and powerful enough to handle the problem of verifying that we’re dealing with an existing domain. However, as stated in the PHP manual, the checkdnsrr() function is not implemented on Windows platforms. It would be useful to have a version that works on Windows for those developers building applications to be executed on Windows servers.

    There are some workarounds to deal with this. Most of these involve writing a custom version of the checkdnsrr() function. So let’s move on and write some code for this Windows-based function.



     
     
    >>> More PHP Articles          >>> More By Alejandro Gervasio
     

       

    PHP ARTICLES

    - Building Dynamic Queries with Chainable Meth...
    - PHP Encryption and Decryption Methods
    - Building a MySQL Abstraction Class with Meth...
    - Completing a Sample String Processor with Me...
    - Mastering WHILE Loops for PHP and MySQL
    - Method Chaining: Adding More Methods to the ...
    - Method Chaining in PHP 5
    - The Role of Interfaces in Applying the Depen...
    - Dependency Injection: Using a Setter Method ...
    - Using a Model Class with the Dependency Inje...
    - Injecting Objects Using Setter Methods with ...
    - Injecting Objects by Constructor with the De...
    - The Dependency Injection Design Pattern in P...
    - Performing Inferential Statistical Analysis ...
    - Performing Descriptive Statistical Analysis ...





    © 2003-2009 by Developer Shed. All rights reserved. DS Cluster 4 Hosted by Hostway
    Stay green...Green IT