blob: 3c2f7e1cf8d31ff52dc3afa4ecc211104a9f5ac7 [file] [log] [blame]
Derek Allard2067d1a2008-11-13 22:59:24 +00001<?php
2
Greg Aker63277b82010-11-09 13:46:13 -06003class Welcome extends CI_Controller {
Derek Allard2067d1a2008-11-13 22:59:24 +00004
5 function Welcome()
6 {
Greg Aker63277b82010-11-09 13:46:13 -06007 parent::CI_Controller();
Derek Allard2067d1a2008-11-13 22:59:24 +00008 }
Barry Mienydd671972010-10-04 16:33:58 +02009
Derek Allard2067d1a2008-11-13 22:59:24 +000010 function index()
11 {
12 $this->load->view('welcome_message');
13 }
14}
15
16/* End of file welcome.php */
Derek Jonesf0b39942010-03-25 10:08:20 -050017/* Location: ./application/controllers/welcome.php */