Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Auto back-end generator [closed]

Is there any PHP application that can automatically generate add/edit forms and listing pages by just reading the database. Like PhpMyAdmin but highly customizable through code or configuration files. The main reason is to avoid time spent on development of back-end of web applications.

like image 863
Imran Naqvi Avatar asked Aug 19 '10 12:08

Imran Naqvi


2 Answers

Try a framework, like CakePHP or Symfony. Almost all frameworks offer scaffolding for the backend part of the app. Here's the Cake way, and here's the Symfony way.

like image 59
Alex Ciminian Avatar answered Sep 24 '22 13:09

Alex Ciminian


Symfony (using Propel or Doctrine) may have just what you're looking for: define the tables and their relationships, and it will generate the models for them, from which it can again generate admin listing/add/edit forms.

like image 36
Piskvor left the building Avatar answered Sep 25 '22 13:09

Piskvor left the building