I\'m getting an unable to locate model error.
$this->load->model(\'1/Gift_model\');
My model file name is gift_model.php
Are you calling the parent's constructor for the model?
class Gift_model extends CI_Model { function __construct() { parent::__construct(); }