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