ci_restful/application/controllers/welcome.php

18 lines
358 B
PHP
Raw Normal View History

2020-01-02 22:54:01 +07:00
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
class Welcome extends CI_Controller {
function __construct()
{
parent::__construct();
}
function index()
{
$this->load->helper('url');
$this->load->view('welcome_message');
}
}
/* End of file welcome.php */
/* Location: ./system/application/controllers/welcome.php */