summaryrefslogtreecommitdiffstats
path: root/system/application/controllers/welcome.php
blob: ec16000df8f846c25688f8460177e9f0b7ee3b08 (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 */