I am new to php and installing this script on my server I get this
Deprecated: Function eregi_replace() is deprecated in C:\xampp\htdocs\playerlist.php on line 290
so when i find that line 290 this is what it is
$contents = eregi_replace("<!--%STATS_PLAYER%-->", $player_stats, $contents);
I have been trying to read on its replacement preg_replace but not quite understanding what it wants me to do.
this is what i have so far
$contents = preg_replace('/<!--%STATS_PLAYER%-->/i', $player_stats, $contents);
if any one could guide me along that would be nice
thanks