Easy to implement captcha with codeigniter?

11,365

Solution 1

https://github.com/EllisLab/CodeIgniter/wiki/ReCAPTCHA <-- would recaptcha work for you?

Solution 2

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

Solution 3

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

Solution 4

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.

Share:
11,365
gregory boero.teyssier
Author by

gregory boero.teyssier

https://ali.actor

Updated on June 18, 2022

Comments

  • gregory boero.teyssier
    gregory boero.teyssier almost 2 years

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