I am recieving the error:
Deprecated: Function eregi() is deprecated in C:\wamp\www\registration\class.register.php on line 75
with my code::
if(empty($this->email) || !eregi('^[a-zA-Z0-9._-]+@[a-zA-Z0-9._-]+\.[a-zA-Z]{2,4}$',$this->email))
What alternative should I use and how can I implement it????
Yes
eregfamily functions have been deprecated, you need to usepregfamily functions instead. In your case, you should usepreg_matchinstead.That piece of code is equivalent to:
It can also be compacted to: