Following is the regex I am trying to use
$eregicheck = "^([-!#\$%&'*+./0-9=?A-Z^_`a-z{|}~])+@([-!#\$%&'*+/0-9=?A-Z^_`a-z{|}~]+\\.)+[a-zA-Z]{2,4}\$";
I changed the following lines
return eregi($eregicheck, $emailtocheck);
to
return preg_match($eregicheck, $emailtocheck);
But I dont know why I am getting the error
Warning: preg_match() [function.preg-match]: Unknown modifier '_'