Validating an email address
August 17th, 2005 by SubZane
Today I will present you with the devious process to validate an email address. It's basicly the same way as with the URL, just a different regular expression.
PHP:
-
function isValidEmail($email) {
-
return false;
-
} else {
-
return true;
-
}
-
}