I changed a php project from XAMP to WAMP. when i try to test the forms in project i get an error.
The error is like this
Deprecated: Function ereg() is deprecated in C:\wamp\www\widephp\includes\functions\general_functions.php on line 135
and the 135th line is
if(!ereg("^[a-z0-9_.]+@[a-z0-9]+\.([a-z.]{2,15})",trim($v))) {
the full part the line contains given below
foreach($fieldEmail as $v) {
if(!ereg("^[a-z0-9_.]+@[a-z0-9]+\.([a-z.]{2,15})",trim($v))) {
$alert = "Enter a valid Email address";
return false;
}
}
Can anyone help with this?