reCAPTCHA is good if your users speak English - they can guess the word, because they know it. Those who do not speak English, forced to guess each letter that is not always possible. There is a universal language that everyone knows: the mathematics. So I wrote a CAPTCHA script prompts the user to solve a simple equation:
captcha.zip (Size: 51.8 KB / Downloads: 24)
N.B. I assume that you are using Form Tools API method to submit your form.
To use it in your form, unzip and upload folder "captcha" to your webserver.
1) If you not using server-side validation.
add:
captcha.zip (Size: 51.8 KB / Downloads: 24)
N.B. I assume that you are using Form Tools API method to submit your form.
To use it in your form, unzip and upload folder "captcha" to your webserver.
1) If you not using server-side validation.
- In you form, after:
PHP Code:<?php
$fields = ft_api_init_form_page(YOUR_FORM_ID);
PHP Code:
<?php
$errors = array();
if (isset($_POST["NAME_OF_SUBMIT_BUTTON"]))
{
if ($_POST["math_c_val"] != $_SESSION["math_c_sum"])
{
$errors["math_captcha"] = "Sorry, you entered an incorrect CAPTCHA number.";
}
if (empty($errors))
{
