Skip to content

Instantly share code, notes, and snippets.

@PetraMotz
Created August 4, 2021 11:52
Show Gist options
  • Save PetraMotz/0ff197924d255129aa82deb75e0ca9df to your computer and use it in GitHub Desktop.
Save PetraMotz/0ff197924d255129aa82deb75e0ca9df to your computer and use it in GitHub Desktop.
PHP #validate #mail
if (!filter_var($email, FILTER_VALIDATE_EMAIL)) {
$emailErr = "Invalid email format";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment