Active Record in CodeIgniter
CodeIgniter uses a modified version of the Active Record Database Pattern. This pattern allows information to be retrieved, inserted, and updated in your database with minimal scripting. In some cases only one or two...
CodeIgniter uses a modified version of the Active Record Database Pattern. This pattern allows information to be retrieved, inserted, and updated in your database with minimal scripting. In some cases only one or two...
A form is displayed to the user, who then fills it in and submits it. The Form Validation Library then checks the form against any rules that the developer has set. If an error...
For working with form in CodeIginter you have to use form helper.Load the form helper $this->load->helper(‘form’); You can also load the form helper in application/config/autoload.php. $autoload[‘helper’]=array(‘form’); Benefit of loading form helper in the autoload.php...