0
I’m getting the following error:
Deprecated: Function eregi_replace() is deprecated in C:\wamp\www\ajax\paginator.inc.php on line 202
This is a line from a script that pages php+mysql+ajax
Line 202:
$_pagi_sqlConta = eregi_replace("select[[:space:]](.*)[[:space:]]from", "SELECT COUNT(*) FROM", $_pagi_sql);
A lot of the querys are obsolete, and I’m adapting from mysql to mysqli. However, the 'eregi_replace' I did not know until now, and after searching, I could not find a solution/alternative for it.
Deprecated Error: Function ereg
– rray