Skip to content

Instantly share code, notes, and snippets.

@amitmerchant1990
Created February 3, 2018 07:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save amitmerchant1990/62ae9a7a5f966133d0f2a5ee9f6b2f16 to your computer and use it in GitHub Desktop.
Save amitmerchant1990/62ae9a7a5f966133d0f2a5ee9f6b2f16 to your computer and use it in GitHub Desktop.
Validate Email (PHP)
<?php
if(!filter_var($emailAddress, FILTER_VALIDATE_EMAIL)) {
//Email is invalid. Show the user an error message.
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment