The installation it's easy , you just download the latest version from https://github.com/X.../zipball/master and you just copy the files at your Codeigniter project (the same thing that you do with the grocery CRUD installation). When this is done you can easily have a result that will look like this:
An example of how using it you can see it below:
function multi()
{
$GCM = new Grocery_crud_multi();
$GCM->grid_add(1);
$GCM->grids[1]->set_table('film');
$GCM->grids[1]->set_subject('film');
$GCM->grid_add(2);
$GCM->grids[2]->set_table('products');
$GCM->grids[2]->set_subject('products');
$GCM->grid_add(3);
$GCM->grids[3]->set_table('customers');
$GCM->grids[3]->set_subject('customers');
$output = $GCM->render();
$this->_example_output_multi($output);
}
function _example_output_multi($output = null)
{
if(is_array($output['output']))
$output['output'] = implode(' ',$output['output']);
$this->load->view('example.php',$output);
}













