Skip to content

I Kadek Wirya

iDesaNetwork

  • Do You Know
  • Networking
    • Gadget
  • OS and Apps
  • Websites
    • PHP
    • WordPress
    • Domain & Hosting
  • Traveling
  • Google

Tag: Regex

Posted on 23 October, 200620 October, 2008

Validating email address

< ?php

function ValidEmailAddress($address) {
$regex = ‘/^[A-z0-9][w.-]*@[A-z0-9][w-.]+.[A-z0-9]{2,6}$/\’;
return (preg_match($regex, $address));
}
?>

Privacy Policy Proudly powered by WordPress