load->database(); $this->load->helper('url'); /* ------------------ */ $this->load->library('grocery_CRUD'); } public function index() { echo "

Welcome to the world of Codeigniter

";//Just an example to ensure that we get into the function die(); } public function prestudent() { $this->grocery_crud->set_table('tbl_prestudent'); $output = $this->grocery_crud->render(); echo "
";
        print_r($output);
        echo "
"; die(); $this->_example_output($output); } function _example_output($output = null) { $this->load->view('our_template.php',$output); } } /* End of file main.php */ /* Location: ./application/controllers/main.php */