Table of Contents
####Overview: Profanity Checker is a simple PHP application that scans large blocks of text to prevent you from using NSFW words.
Input could be either in the form of a .txt file or raw text.
Inspired from the What Do You Love Project by Google (this has now been depreciated), it enables you to perform checks across several modes including the ones deemed not fit by Google originally!
####Modes
- Standard Mode: This mode checks against the WDYL words maintained here
- Create Custom Check: Allows user to create a custom database of words that the user may deem inappropriate to avoid entering same set of words again and again.
- Selective Check: Allows user to check for a particular set of words for exactly one instance. The words are NOT stored in a database.
The Custom list takes words separated by a space. Eg: Input should be of type 'random words check' to check for 'random', 'words' and'check' ####Installation Save connection.inc.php.sample as connection.inc.php and change variables according to your database settings and you are good to go.