Skip to content

Instantly share code, notes, and snippets.

@rittme
Created March 11, 2012 12:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
  • Save rittme/2016242 to your computer and use it in GitHub Desktop.
Save rittme/2016242 to your computer and use it in GitHub Desktop.
Codeigniter: Default codeigniter 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