Answers for "check if input is email php"

PHP
4

how to validate an email field using php

<?php
   $email = "[email protected]";
   // Validate email
   if (filter_var($email, FILTER_VALIDATE_EMAIL)) {
      echo("$email is a valid email address");
   }
   else{
      echo("$email is not a valid email address");
   }
?>
Posted by: Guest on July-28-2020

Code answers related to "check if input is email php"

Browse Popular Code Answers by Language