Post Reply 
 
Thread Rating:
  • 0 Votes - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Validate Email address with PHP
02-15-2010, 07:36 AM
Post: #1
Validate Email address with PHP
I have my website completely made in PHP. But I m stuck in the Email address validation. How can i do that with PHP

More Info
webmyne.com

web development india | php development india
Find all posts by this user
Quote this message in a reply
02-15-2010, 02:41 PM
Post: #2
RE: Validate Email address with PHP
Easy way is with a regex expression and preg_match, e.g.

Code:
if(!preg_match("/^[A-Z0-9._%-+]+@[A-Z0-9][A-Z0-9.-]{0,61}[A-Z0-9]\.[A-Z]{2,6}$/i", $email)) {
    // address doesn't match format
}

but not 100%
Find all posts by this user
Quote this message in a reply
Post Reply 


Forum Jump: