Important facts about commercial licenses

  • Licenses are perpetual. They do not expire and do not need to be renewed.
  • Licenses can be upgraded. You can upgrade to a more expensive license later paying only the difference in cost.
  • Pay attention to the distribution type - Hosted (sites / servers), binary (applications) or source (includes all the others). Choose according to your needs (more below).
  • All licenses allow commercial use unless otherwise indicated.
  • Read the full license by clicking on the icon.
  • Read more about licenses in our handy license guide.
Free

MIT license

The MIT license is an
open-source license.
You need to log-in or create an account
  • Create an account
  • Log-in
  • Please use your real name.
  • Account activation link will be sent to this address.
  • Minimum 8 characters

Clicking this button confirms you read and agreed to the terms of use and privacy policy.

  • Released: May 13, 2011
    Last Update: Oct 19, 2011
  • Language: PHP
    Framework: CodeIgniter
  • Time / costs savings: 50h / $3000 *
(5 ratings)

grocery CRUD

grocery CRUD
Developed by John Skoumbourdis, Released May 13, 2011

Just few lines of code and you can create a full stable CRUD with nice views. grocery CRUD is an automatic CRUD system that everyone can works with.

PHP

Tags: add edit delete , ajax , codeigniter crud , crud

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 ?

  1. First of all it works with codeigniter a really powerful framework
  2. Second is really... really easy
  3. Third and most important its flexible.It has callbacks almost everywhere, so you have the opportunity to change everything.
  4. A php developer will write mostly only the business logic of the CRUD , no more javascripts no more views , no more css just ... PHP.

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

View all 2 reviews »

User Reviews

  • 1 of 1 people found this review helpful Felipe 1 year ago
    Amazing time saver. Very easy to integrate with codeigniter, sample provided is very easy to understand and script create a fully functional CRUD.
    Flag
    Was this helpful? Yes No
  • sameera damith 3 weeks ago
    best work..
    Flag
    Was this helpful? Yes No

Questions & Comments


Or enter your name and Email
No comments have been posted yet.
You must be logged-in to vote. Log-in to your account or register now.