Current File : /home/obabain/anmserp_obaba_in/application/controllers/Welcome.php |
<?php
defined('BASEPATH') OR exit('No direct script access allowed');
class Welcome extends CI_Controller {
public function __construct()
{
parent::__construct();
$this->load->library('session');
$this->load->helper('form');
$this->load->helper('url');
$this->load->helper('html');
$this->load->database();
$this->load->library('form_validation');
$this->load->helper(array('form', 'url'));
$this->load->helper('file');
$this->load->library('email');
}
public function index()
{
$this->load->view('welcome_message');
}
}