Hi guys,
I'm starting to learn PHP. I tried to use a little email-script on my WAMP 5.3.0 server on localhost, but i'm receiving the same error everythime:
Deprecated: Function ereg() is deprecated in C:\wamp\www\is_email.inc.php on line 14
if (ereg("^[_a-zA-Z0-9-]+(\.[_a-zA-Z0-9-]+)*@([a-zA-Z0-9-]+\.)+([a-zA-Z]{2,4})$", $emailadres)) {
return TRUE;
} else {
return FALSE;
}
}
How can I solve this problem? Thank you!