Documenation of grocery CRUD »
grocery CRUD is designed to make a web developer's life easier. You don’t have to do every time the copy-paste of thousands code lines and views and don’t be sure if it works or not. You don't need to test your backoffice again and again to create just ... a CRUD . All the levels of php developers, can use it . But why to use grocery CRUD ?
Let's go to an example. Lets say you have a table named "customers" and the field names are: fullname, age , email, date_added , comments. To create the crud for the table customers you simply need just few lines of code ( afetr the installation of grocery CRUD of course)
function customers(){
$this->grocery_crud->set_subject('Customer');
$this->grocery_crud->set_table('customers');
$this->grocery_crud->columns('fullname','age','email');
$this->grocery_crud->render();
}
That's it! you just create a full stable CRUD with nice views for the table customers. For more about how to use grocery CRUD you can see the online documentation.
More examples for grocery CRUD you can see at the examples of grocery CRUD and for the documentation of the CRUD you can visit the webpage of grocery CRUD
The installation its really easy. You copy the files to your codeigniter project and its ready. For more about how to install it to your codeigniter project you can see it at installation of grocery CRUD
Amazing time saver. Very easy to integrate with codeigniter, sample provided is very easy to understand and script create a fully functional CRUD.
best work..
Questions & Comments