Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cesarhdz/2085944 to your computer and use it in GitHub Desktop.
Save cesarhdz/2085944 to your computer and use it in GitHub Desktop.
CI: Default Controller
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
class Welcome extends CI_Controller {
/**
* Index Page for this controller.
*/
public function index()
{
}
}
/* End of file welcome.php */
/* Location: ./application/controllers/welcome.php */
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
class Welcome extends CI_Controller {
/**
* Index Page for this controller.
*/
public function index()
{
}
}
/* End of file welcome.php */
/* Location: ./application/controllers/welcome.php */
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment