Answers for "how to check if an email is valid php"

PHP
5

valide email php

$email = "[email protected]";

if (!filter_var($email, FILTER_VALIDATE_EMAIL)) {
  $emailErr = "Email invalide";
}
Posted by: Guest on May-11-2020

Code answers related to "how to check if an email is valid php"

Browse Popular Code Answers by Language