We found 0 resource for you...

PCG – PHP Code Generator for CodeIgniter

Matthew 0 Comments

If you are like me, you hate coding the basics, the add, delete, modify, view commands that are the basis of all applications, also known as CRUD (create, read, update and delete).  It’s the first thing you do when creating an application, then you create your custom views, and forms.  For me, its a keystone step in creating any application, and I hate it.

In walks PCG, the PHP Code Generator, which is CodeIgniter based.  I have been using CodeIgniter for over a year now because I find it quite simple to use. PCG takes the simplicity one step further by allowing you to create the CRUD portion of you script in 5 easy steps:

Step 1: Settings

pcg1
Simply Name your project (Website Title)
Give the URL (Must be a fully qualified domain name, IPs don’t work, I tried)
Supply your admin login and password

Step 2: Design

pcg2
This is where you get to create your modules, it creates all the pages you need to complete the CRUM for each module.…

Continue reading