Jump to content

Filter EmailAddress


vishnusr

Recommended Posts

That filter returns a true/false, the usage would be something like these examples

<?php
$vaildemail  = "[email protected]";

//example 1
$filterEmail = (filter_var($vaildemail, FILTER_VALIDATE_EMAIL));
if ($filterEmail == FALSE) {
    echo "not valid 1 <br />";
} else {
    echo "valid 1 <br />";
}

//example 2
if (!filter_var($vaildemail, FILTER_VALIDATE_EMAIL)) {
    echo "not valid 2";
} else {
    echo "valid 2";
} 

?>
Link to comment
https://forums.phpfreaks.com/topic/287574-filter-emailaddress/#findComment-1475205
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.