blob: 4ed67500b4f7e6a878f9de149d27243713bf6560 [file] [log] [blame]
Greg Aker4abfa682010-11-10 14:44:26 -06001<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
Derek Allard2067d1a2008-11-13 22:59:24 +00002
Greg Aker63277b82010-11-09 13:46:13 -06003class Welcome extends CI_Controller {
Derek Allard2067d1a2008-11-13 22:59:24 +00004
Greg Aker03103102011-03-08 22:05:05 -06005 public function index()
Derek Allard2067d1a2008-11-13 22:59:24 +00006 {
7 $this->load->view('welcome_message');
8 }
9}
10
11/* End of file welcome.php */
Derek Jonesf0b39942010-03-25 10:08:20 -050012/* Location: ./application/controllers/welcome.php */