show/hide this revision's text 2 added 172 characters in body

The purpose of MVC frameworks is to separate layout from business logic from data storage.

Most frameworks make it easier to separate these aspects, but you can still go against the spirit of the framework you're using and muddy it up with layout logic in the database model. Poor design and implementation isn't eliminated by these frameworks.

I have used CodeIgniter and CakePHP (both of which are PHP MVC frameworks).

CakePHP provides a lot of libraries and functionality but is generally regarded as slower somewhat slow (though it's more than likely fast enough for most solutionsneeds).

CodeIgniter is quite lean and is regarded as one of the fastest PHP MVC frameworks. I've moved to this one simply because CakePHP had much more efficientthan I needed for my basic sites.

Before choosing which you'll use check out the features and try to pick the one which meets all your demands without providing too much you won't use.

show/hide this revision's text 1

The purpose of MVC frameworks is to separate layout from business logic from data storage.

Most frameworks make it easier to separate these aspects, but you can still go against the spirit of the framework you're using and muddy it up with layout logic in the database model. Poor design and implementation isn't eliminated by these frameworks.

I have used CodeIgniter and CakePHP (both of which are PHP MVC frameworks).

CakePHP provides a lot of libraries and functionality but is regarded as slower than most solutions.

CodeIgniter is quite lean and is regarded as more efficient.

Before choosing which you'll use check out the features and try to pick the one which meets all your demands without providing too much you won't use.