public function __construct()
 {
     parent::__construct();
     $this->load->library(array('session', 'form_validation'));
     $this->load->model('login_model');
     $this->load->helper(array('url', 'form'));
 }
Example #2
0
 function __construct()
 {
     parent::__construct();
     $this->load->library('recaptcha');
     $this->load->library('form_validation');
     $this->load->helper('form');
     $this->lang->load('recaptcha');
 }
 public function __construct()
 {
     parent::__construct();
     $this->load->library(array('session', 'form_validation'));
     //$this->load->helper(array('url'));
     //MNODEL DE LOGIN
     $this->load->model('login_model');
     // $this->load->library(array('session','form_validation'));
     $this->load->helper(array('url', 'form'));
     $this->load->database('default');
 }
Example #4
0
 function __construct()
 {
     parent::__construct();
 }