Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
<!--- CHECK TO MAKE SURE USER DID NOT ENTER ANY ILLICIT WORDS --->
<cfset bad_words = "badword1,badword2,badword3,badword4,badword5,etc">
<cfif ListFindNoCase(bad_words,'#FORM.Field1#')>
<!--- IF BADWORDS DETECTED, IGNORE POST --->
<cfelse>
<!-- IF NO BADWORDS DETECTED, INSERT POST --->
<cfquery name="" datasource="" username="" password="">
</cfquery>
</cfif>