views:

661

answers:

5

I'm using CodeIgniter and need an easy to implement captcha. Something simple, nothing too complicated. Any ideas?

+4  A: 

http://codeigniter.com/wiki/ReCAPTCHA/ <-- would recaptcha work for you?

corprew
+2  A: 

Try using ReCaptcha - http://recaptcha.net/ - it's easy and has PHP API too.

StasM
+1  A: 

A list of 12 essential captchas. Captchator for example looks easy to implement.

If you wish to use captcha because of spam messages I would advice you to also look at akismet or typepad antispam

Alfred
+1  A: 

Making your own captcha script could also be fun. With php gd library it is not too hard to accomplish. Ofcourse, there is no point in reinventing the wheel and using scripts like recaptcha is much safer, but like I said - it could be fun.

Mikk