Skip to main content

Posts

Showing posts with the label Google reCAPTCHA

Google reCAPTCHA using PHP and jQuery

Google reCAPTCHA using PHP and jQuery. A CAPTCHA is a program that protects websites against bots by generating and grading tests that humans can pass but current computer programs cannot. It is usually a graphic image with a series of distorted letters on an equally distorted or multicolored background. Google has released the new reCAPTCHA . Using reCAPTCHA users can prove they are human without solving a CAPTCHA. Steps for google reCAPTCHA implementation. 1. Create a secure key and site key Register your site at Google from here – https://www.google.com/recaptcha/admin      2. Html Code Now first of all include Google reCAPTCHA javascript library. <script src="https://www.google.com/recaptcha/api.js" async defer></script> Now in form body section add reCAPTCHA DIV element <form action="" method="POST">     <input type="text" name="name" value="" />     <input type="text" name=...