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 Quote Link to comment Share on other sites More sharing options...
QuickOldCar Posted April 7, 2014 Share Posted April 7, 2014 (edited) That filter returns a true/false, the usage would be something like these examples <?php $vaildemail = "me@mail.com"; //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"; } ?> Edited April 7, 2014 by QuickOldCar Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.