What is the fastest way to create admin interfaces in PHP?

What is the fastest way to create admin interfaces in PHP?

It could be a structure, a library / libraries combined with a specific approach, or something else.

Background: I am a Django developer, spoiled by an auto administrator who needs to deliver a web application in PHP. The application is very difficult to administer / form and has different access levels.

+4
source share
7 answers

On PHP, Symfony , which has generator generators, is probably what you are looking for.

+5
source

I also suggest symfony. Zend will be too much for a small project. if you are creating a blog, use Drupal.

+3
source

I personally would use http://agiletoolkit.org/ This is done in php, but allows you to use one of the best frameworks I've seen to build This. They have great support and answered all my questions.

Check out this page only on what this structure can do. http://ui.agiletoolkit.org/

+2
source

Maybe CodeIgniter . I didnโ€™t try, but I had this colleague (PM) at work (Java store), always talking about how he could do faster and better if we used CodeIgniter.

+1
source

If you insist on using the framework for this, be sure to go to CodeIgniter . His lightweight MVC approach really makes the project like this breeze. I create many database-driven administrative applications with PHP and find that CI is a time keeper.

Of course, it is possible to complete this task using nothing more than vanilla PHP and libraries. I have created many management applications without frameworks.

If you have any other questions, let me / us know.

- Nicholas

+1
source

The fastest way? Write it by hand. If there is potential for reuse, copy and paste first, and then reformat to libraries. This approach works best if you pretty much know what you are doing. Otherwise, the answer may be the basis.

+1
source

Have you tried QCodo, which does a lot automatically.

+1
source

All Articles