* @see https://codeigniter.com/user_guide/general/urls.html */ function __construct() { parent::__construct(); // Load url helper $this->load->helper('url'); $this->load->helper('html'); //$this->load->model('m_user'); $this->load->library('session'); } public function index() { // view "home" page $this->load->view('home_page'); } }