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.
<cfif isDefined("form.submit")>
<cf_recaptcha action="check"
privateKey="xxxxxxxxx"
publicKey="xxxxxxxx">
<cfoutput><b>recaptcha says #form.recaptcha#/b></cfoutput>
<cfif form.recaptcha>
accepted. do one thing
<cfelse>
rejected. do something else
</cfif>
</cfif>
<cf_recaptcha action="check"
privateKey="6Ld7l7oSAAAAANeJkL7MGfEgB6AVYo7QHVXFkgaG"
publicKey="6Ld7l7oSAAAAAOxY9FHq-vpjMHh9IMARx04-8U-l">
<cfif isDefined("form.submit")>
<cfoutput>recaptcha says #form.recaptcha#</cfoutput>
<cfif form.recaptcha>
accepted. do your INSERT here ...
</cfif>
</cfif>
--------
<form method="post" ...>
To protect against form SPAM, we're requiring that feedback form submissions be validated by entering the image value in the field below. If the image's value is too hard to read, press the refresh button to the right.</font>
</p><font face="Verdana, Arial, Helvetica, sans-serif"size="2">
<!--- end part of recaptcha code --->
<cf_recaptcha
privateKey="6Ld7l7oSAAAAANeJkL7MGfEgB6AVYo7QHVXFkgaG"
publicKey="6Ld7l7oSAAAAAOxY9FHq-vpjMHh9IMARx04-8U-l">
<input type="Submit" name="submit">
</form>