I used to use eregi for validating email address input that matches to the regular expression.
Tag Archives: php 5.3
Deprecated: Function eregi() is deprecated
It means the function is old and not supposed to use anymore. I don’t remember the versions where this still was or where it was removed but thats probably the case. You should use preg_match. And instead of all ereg* functions there is usually preg_* function that you can use. You can use the i …
Continue reading “Deprecated: Function eregi() is deprecated”