Answers for "php if valid email"

PHP
1

valide email php

$email = "[email protected]";

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

Browse Popular Code Answers by Language