Newbie question
i have following function:
function isadult($description)
{
$bad=/*comma separated bad words*/;
$bad=explode(",",$bad);
foreach($bad as $key)
{
if(eregi($key,$description))
{
return true;
}
}
return false;
}
if (isadult($description)) exit;
else
this function apply only to variable $description
if i want apply this function also to variable $title
how to modify function ?
and eregi
is deprecated how to change eregi with preg_match
?
thanks