/ Published in: PHP
This snippet is a PHP function that checks if an email address is valid
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
<?php function check_email($email) { { return false; } else { return true; } } ?>