Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save cam-gists/2795637 to your computer and use it in GitHub Desktop.
Save cam-gists/2795637 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