Jump to content

Caps


corkg

Recommended Posts

Hi

I have a bad word filter lets say "hello" is a bad word

it will replace it by Violation, but if you put in HELLO it won't filter it.

How can I filter all types like HeLlO of hEllO

 

At the Moment i have

$bad_words = explode('|', 'hello');
foreach ($bad_words as $naughty){
$txt = str_replace("$naughty", "<font color=darkred><b><a href=tos.php>Violation</a></b></font>", $txt);
}

 

Link to comment
https://forums.phpfreaks.com/topic/70947-caps/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.