summaryrefslogtreecommitdiffstats
path: root/application/controllers/welcome.php
blob: 4ed67500b4f7e6a878f9de149d27243713bf6560 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');

class Welcome extends CI_Controller {

	public function index()
	{
		$this->load->view('welcome_message');
	}
}

/* End of file welcome.php */
/* Location: ./application/controllers/welcome.php */