Email Validation
<?
function is_valid_email($email) {
if(ereg("([[:alnum:]\.\-]+)(\@[[:alnum:]\.\-]+\.+)", $email)) {
return 1;
} else {
return 0;
}
}
?>
Showing posts with label Email. Show all posts
Showing posts with label Email. Show all posts
Tuesday, March 3, 2009
Subscribe to:
Posts (Atom)