Create simple HTML forms without programming. If you can cut and paste HTML you can make a working email form using our back-end form processor; no CGI required.
<script language="JavaScript" type="text/javascript" src="http://www.freeforms.org/captcha_include.js.cfm"> </script> <A href="http://www.freeforms.org/captcha.cfm">Free Captcha</A>That will add form fields to your form which you then check using your form processing script. The example bbelow uses coldfusion, but could easily bee replicated in PHP or ASP.
<!--- Check captcha ---> <cfhttp url="http://www.freeforms.org/captcha_check.cfm?cap_key1=#cap_key1#&cap_key2=#cap_key2#&answer=#answer#"> </cfhttp> <cfif cfhttp.filecontent does not contain "true"> Sorry you did not solve the captcha correctly <cfabort> </cfif>Code Explination: Sending the encrypted keys and the users We will add a php version soon.
© Copyright 2008 All rights reserved.