/ Published in: PHP

Check the email validity with filter_var and checkdns
Expand |
Embed | Plain Text
function checkEmail($email) { $validate = filter_var($email, FILTER_VALIDATE_EMAIL); if ($validate) { } else { } } else { } }
You need to login to post a comment.