Skip to content

Instantly share code, notes, and snippets.

@srttk
Created July 19, 2013 07:43
Show Gist options
  • Save srttk/6037416 to your computer and use it in GitHub Desktop.
Save srttk/6037416 to your computer and use it in GitHub Desktop.
PHP_Filter_validation
//Email validation
if (!filter_var($email, FILTER_VALIDATE_EMAIL)) {
$error="Invalid email addrress";
}
//
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment