vishnusr Posted April 7, 2014 Share Posted April 7, 2014 Hi Frnds, How to filter vaild email address from list.. whats wrong on my code $filterEmail = (filter_var($vaildemail, FILTER_VALIDATE_EMAIL)); //echo ($filterEmail); foreach ($filterEmail as $key => $val) { echo trim($val).'<br />'; } thanks advance, Vishnukumar SR Link to comment https://forums.phpfreaks.com/topic/287574-filter-emailaddress/ Share on other sites More sharing options...
QuickOldCar Posted April 7, 2014 Share Posted April 7, 2014 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 More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.