controllers/welcome.php
changeset 0 3773f4677c40
equal deleted inserted replaced
-1:000000000000 0:3773f4677c40
       
     1 <?php
       
     2 
       
     3 class Welcome extends Controller {
       
     4 
       
     5 	function Welcome()
       
     6 	{
       
     7 		parent::Controller();	
       
     8 	}
       
     9 	
       
    10 	function index()
       
    11 	{
       
    12 		$this->load->view('welcome_message');
       
    13 	}
       
    14 }
       
    15 
       
    16 /* End of file welcome.php */
       
    17 /* Location: ./system/application/controllers/welcome.php */