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