Warning: eregi() [function.eregi]: REG_EMPTY in D:\xampp\htdocs\bilingual_dictionary\search.php on line 123
The code that is producing this error is
Code: Select all
function patternmatch($ill,$redirects,$pagelink)
{
$i=0;
while($pagelink[$i])
{
/*line 123*/ if(eregi($ill[$i],$pagelink[$i]))
{
$lts[]= $pagelink[$i];
}
$i=$i+1;
}
return $lts;
}Thanks
Ankuj