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

class Welcome extends Controller {

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