Forum Moderators: coopster
Notice: Undefined variable: stars in C:\Program Files\blahh on line 61
here is my code
function language_filter($string) {
$obscenities = @file("foul_language.txt");
foreach ($obscenities as $curse_word) {
$curse_word = trim ($curse_word);
if (stristr(trim($string),$curse_word)) {
$length = strlen($curse_word);
for ($i = 1; $i <= $length; $i++) {
$stars .="*";
}
$string = eregi_replace($curse_word,$stars,trim($string));
$stars = "";
}
}
return $string;
}