I’ve been working with Grocery CRUD the last few weeks and it is honestly the best CRUD I have worked with and really easy to use. Grocery CRUD (CRUD = Create, Read, Update and Delete) is a library that makes a developer’s life easier. Just few lines of code and you can create a full stable CRUD with nice views. A totally automatic system that even a newbie in PHP can work with.
As a php web developer you will often have the problem to create a simple, stable and secure backoffice system. How many CRUD different did you create for you customers? I suppose many . How much time did you spend to create them? It actually takes a lot of time (sometimes weeks) to create all the business logic, the models and the views again from the beginning for each table. As you can see there are similar things in those projects. The Create (or else Add) the Update (or else Edit) , the Delete and of course the listing grid .
With grocery CRUD and with the power of Codeigniter framework , you can create a full CRUD system in just one minute. With this Codeigniter CRUD generator , you don’t have to copy all your css, JavaScripts, tables, forms, grid, functions , models, libraries, views again and again to your backoffice system. Just few lines of code and you are ready to have your own CMS. The CRUD is working well with Codeigniter 2.0.x and 2.1.x
Here is a simple example of a short few lines of code:
function offices()
{
$output = $this->grocery_crud->render();
$this->_example_output($output);
}
The above the code will produce the following:
In the example above the set table name (offices) get the default Crud with add-edit and delete (create-update-delete). All the views are ready and you don’t need anything else.
If you’re using CodeIgniter 2.x then give Grocery CRUD a go, seriously worth your while and speeds up your productivity so much.
The Grocery CRUD website: www.grocerycrud.com
Live Grocery CRUD examples: www.grocerycrud.com/examples
Grocery CRUD support: forums
