This is the error i am receiving
Deprecated: Function eregi() is deprecated in /home/socia125/public_html/profile.php on
line231
This is my code
// Loop through the array of user agents and matching operating systems
foreach($OSList as $CurrOS=>$Match) {
// Find a match
if (eregi($Match, $agent)) {
break;
any help is appreciated
Use
preg_matchinstead oferegi.But it seems like all it does is searching for a string, so you might be able to use
striposinstead.I can’t guarantee that it works as it should, since we don’t see all of the code (especially contents and example values of
$Matchand$agent)