Earlier I’ve shown how to create a CRUD admin panel using plain php. In this article I will explain how you can do it using Codeigniter.
Steps, will be pretty much the same, even easier because I already wrote files that will automate most parts for Codeigniter.
Let’s say we need to [...]
Data manager is open source php library that allows developers to create CRUD admin panels of any complexity super fast! And no matter what CMS or framework you use or if you write custom code, all you need is:
PHP5 MySQL
Project Github page: https://github.com/andreytech/Data-manager
You can download library here: https://github.com/andreytech/Data-manager/zipball/master
Here are [...]
Here is explanation for most used parameters:
name – for most fields( which doesn’t have ‘non_db’ => 1 parameter) this parameter mean name of database table field which will be used to save information from this field.
type – this is type of field that will be used. Most used field types are [...]
If you are a php developer most likely you have ever had a task to create something like this:
And when you click on one of item you need something like this to show up:
And when you click “Save” or add new item, it will automatically [...]
