summaryrefslogtreecommitdiffstats
path: root/system/application/controllers/welcome.php
blob: 20d48855e261d0468f2449700641ca2942254c8b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?php

class Welcome extends Controller {

	function Welcome()
	{
		parent::Controller();	
	}
	
	function index()
	{
		$this->load->view('welcome_message');
	}
}

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