Link to home
Start Free TrialLog in
Avatar of alleon
alleon

asked on

CAPTCHA for Contact Form

Hi,

I have a couple of forms and am receiving a number of spam submissions, and thus thought of installing a captcha.  Can someone tell me how to add a captcha to my forms, to limit the number of spam submissions?

Ideally the captcha would be free, with few/no advertisements.

Thanks.
ASKER CERTIFIED SOLUTION
Avatar of alain34
alain34
Flag of United Kingdom of Great Britain and Northern Ireland image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
SOLUTION
Avatar of Loganathan Natarajan
Loganathan Natarajan
Flag of India image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Hi, I've been using http://www.phpcaptcha.org
You need to download the files, in the same directory as your registration script.
It's simple to use:

							<img id="captcha" src="./securimage/securimage_show.php" alt="CAPTCHA Image" />
							<p>
								<a href="#" onclick="document.getElementById('captcha').src = './securimage/securimage_show.php?sid=' + Math.random(); return false">Another image</a>
							</p>
<input type="text" name="captcha_code" size="10" maxlength="6" />

Open in new window

Avatar of alleon
alleon

ASKER

Hi I want would like to use PHP Captcha (http://www.phpcaptcha.org).

Can someone tell me how can I link the things (including both audio and images + having my own text phrases) to my form?

I am using HTML not PHP..
Avatar of alleon

ASKER

I mean, can someone tell me how should I add this CAPTCHA to my form?  I would like to go for the full version, including sound and my own text phrases.

Thanks for everyone :)