PDA

View Full Version : alternative to captcha



zengoth
04 Jun 2010, 02:40 PM
I am not a developer, but the website I designed for a client has a form which is getting lots of spam. Client mentioned how ugly the captcha boxes are (and I can understand that). Is there an alternative to captcha that I can offer him?

Remember, I am not a programmer, so please be kind. I am good at design, html and css - and that's about it.

Thanks in advance.

Alan
05 Jun 2010, 12:21 PM
You could present the user with a series of questions that only a human user can answer.

e.g. What colour is the grass?, What is two plus two?, What does a tadpole grow up to be?

Something like that. Another suggestion is to check for javascript and cookies etc. The majority of bots doesn't have it enabled.

Finally, you could do some sort of a memory game. Show 4 images and highlight 3 in a sequence, asking the user to repeat the sequence. Be sure to offer a feature to repeat the sequence.

There are a number of ways, but none of them are fool proof. Markup and styling languages (HTML & CSS) aren't enough to implement these. You will need to use a server-side language, such as PHP, Java, ASP.NET, C# etc.