Skip to content

Instantly share code, notes, and snippets.

@IftiMahmud
Last active August 29, 2015 14:09
Show Gist options
  • Save IftiMahmud/d6bcbf88371a951d33ce to your computer and use it in GitHub Desktop.
Save IftiMahmud/d6bcbf88371a951d33ce to your computer and use it in GitHub Desktop.
<?php
// basic email validation, needs to be updated to support new longer domains
$email = 'test@email.com';
$regex = "/[A-Z0-9._%+-]+@[A-Z0-9.-]+\.[A-Z]{2,4}/i";
$valid = preg_match( $regex, $email ) ? 'yes' : 'no';
?>
<strong>Email:</strong> <?php echo $email ?><br />
<strong>Valid:</strong> <?php echo $valid ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment