/ 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
<?php function validEmail($email) { return TRUE; else return FALSE; } ?>
You need to login to post a comment.