<?php    $email = "pattrick@tutorialspoint.com"    // 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");    } ?>

Continue reading

Read more of this post