Skip to content

Instantly share code, notes, and snippets.

@infurno
Last active December 12, 2015 03:29
Show Gist options
  • Select an option

  • Save infurno/4707490 to your computer and use it in GitHub Desktop.

Select an option

Save infurno/4707490 to your computer and use it in GitHub Desktop.
This is an example CI Controller
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
class #CONTROLERNAME extends MY_Controller {
public function #ACTION()
{
//code here ....
$this->load->view('welcome_message');
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment