/ Published in: PHP
The following function does a very simple check on the supplied string to help ensure it is a valid email address.
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
<?php function validEmail($email) { return TRUE; else return FALSE; } ?>