
In this tutorial I will show you how to use the the codeigniter captcha helper.
The CAPTCHA Helper file contains functions that assist in creating CAPTCHA images.
Frist we have load library of captcha in controller.
$this->load->helper('captcha');
Now we will create controller for the CAPTCHA so let's start.Before we create controller we will create captcha folder in root directory of project.
<?php
/**
*
*/
class Captcha...