I have 3 tables in my db "employees", "sign", "subscription", and all of my tables has this same construct.
It is possible to view in one table all my records?
public function index()
{
$this->grocery_crud->set_table('employees');
$output=$this->grocery_crud->render();
$this->grocery_crud->set_table('sign');
$output2=$this->grocery_crud->render();
$this->_example_output($output2);
}
This generate 2 tables, but I want view all records from my 3 db tables in one table.
