I am trying to run crud application with mariadb in codeigniter.but when i followed every step and run the file..it only showing the listing page..rest is showing 404 Not Found error. I guess 404 is routing issue but i am unable to find that. Here is my controller:
class Examples extends CI_Controller {
public function __construct()
{
parent::__construct();
$this->load->library('grocery_CRUD');
}
public function _example_output($output = null)
{
$this->load->view('example.php',$output);
}
public function index()
{
//echo "hii"; die;
$crud = new grocery_CRUD();
$crud->set_theme('datatables');
$crud->set_table('admin_user');
$crud->set_subject('Admin');
$output = $crud->render();
$this->_example_output($output);
//$this->_example_output((object)array('output' => '' , 'js_files' => array() , 'css_files' => array()));
}
}
Am i missing anything here? Please let me know..
you need to put de routes for the functions of GC
but if in the form you load an image file, the crud return an error mensage