[PHP] bad word filter

2001-07-24 Thread Tyler Longren
Hello everyone, I've been reading the Profanity Filter thread in the list archives but haven't found anything real helpful. Here's my code so far, this of course won't work. ? function filterWords($string, $result) { $badwords=shit, fuck, ass, bitch; $word=explode(, ,

Re: [PHP] bad word filter

2001-07-24 Thread Ryan Fischer
You wrote: I've been reading the Profanity Filter thread in the list archives but haven't found anything real helpful. Here's my code so far, this of course won't work. ? function filterWords($string, $result) { $badwords=shit, fuck, ass, bitch; $word=explode(, ,

Re: [PHP] bad word filter

2001-07-24 Thread Tyler Longren
Fischer [EMAIL PROTECTED] To: Tyler Longren [EMAIL PROTECTED]; php-general [EMAIL PROTECTED] Sent: Tuesday, July 24, 2001 2:27 PM Subject: Re: [PHP] bad word filter You wrote: I've been reading the Profanity Filter thread in the list archives but haven't found anything real helpful. Here's my