Hi,
Please read reCAPTCHA document here.
You can add code: <?php
require_once('recaptchalib.php');
$publickey = "your_public_key"; // you got this from the signup page
echo recaptcha_get_html($publickey);
?>
after line 105 (file index.html)
<input type="text" name="email" placeholder="Your email">
and include recaptchalib.php to processForm.php file.
Hi,
Please read reCAPTCHA document here.
You can add code:
<?php
require_once('recaptchalib.php');
$publickey = "your_public_key"; // you got this from the signup page
echo recaptcha_get_html($publickey);
?>
after line 105 (file index.html)
<input type="text" name="email" placeholder="Your email">
and include recaptchalib.php to processForm.php file.
What do you mean "include recaptchalib.php to processForm.php file"?