Possible Duplicate:
Function eregi() is deprecated
I have created a contact form with PHP, but am getting a warning:
Deprecated: Function eregi() is deprecated in D:\hosting\9606426\html\Websites\LuxeBeauty\1\contact.php on line 9
This is line 9:
if(!eregi("^[a-z0-9]+([_\\.-][a-z0-9]+)*" ."@"."([a-z0-9]+([\.-][a-z0-9]+)*)+"."\\.[a-
z]{2,}"."$",$email )){
...
}
What should I do to fix this?