views:

98

answers:

5

I am using python with django. There I can simply make form from models and also it had builtin Admin.

I am eager to know corresponding framework for PHP with all this facilities.

I have encountered lot some similar questions like this, but they had not compared the frameworks with django. Experts Please Suggest.

+3  A: 

I'd try Symfony.

What you're referring to sounds like "scaffolding"

Phil Brown
The Django admin serves as an interface for administration to be used by site staff, and is quite polished and complete - it's not quite like the bare bones CRUD generation found in other frameworks.
Alex JL
But maybe, out there is a plugin for symphony closer to django admin
diegueus9
+2  A: 

I've had good success with Zend in the past. It has a lot of functionality in its libraries and it is all completely decoupled, so you can use whichever parts best fit your task, leaving out other things all together.

Wade Tandy
+3  A: 

It doesn't have built in admin, but I like CodeIgniter. It really gives you freedom with your code without getting in the way.

Chetan
A: 

Another one that once saved my ass in a project with close deadline was CakePHP

Pēteris Caune
+1  A: 

I like Yii. It's based on the Model-View-Controller pattern, like most of the other PHP frameworks mentioned here. It uses templates, can do scaffolding, etc...

Zaki Saadeh