I\'m getting an unable to locate model error.
$this->load->model(\'1/Gift_model\');
My model file name is gift_model.php
http://www.codeigniter.com/userguide3/installation/upgrade_300.html
Starting with CodeIgniter 3.0, all class filenames (libraries, drivers, controllers and models) must be named in a Ucfirst-like manner or in other words - they must start with a capital letter.
Used to be the model files started with lower case, but they changed it.