Showing posts with label PHP framework. Show all posts
Showing posts with label PHP framework. Show all posts

Sunday, 26 February 2012

Cakephp interview questions

What is cakephp?
Cakephp is a rapid development framework for PHP that provides an extensible architecture for developing, maintaining, and deploying applications. it uses commonly known design patterns like MVC,ORM within the convention over configuration paradigm, It also reduces development costs and helps developers write less code.

Saturday, 25 February 2012

Top 10 PHP Frameworks

These are the top ten PHP frameworks that are based on the MVC design pattern.

1. Yii

Yii is a component-based high-performance PHP framework for developing large-scale Web applications. Yii is written in strict OOP and comes with thorough class reference and comprehensive tutorials. From MVC, DAO/ActiveRecord, widgets, caching, hierarchical RBAC, Web services, to theming, I18N and L10N, Yii provides nearly every feature needed by today’s Web 2.0 application development. And all these come without incurring much overhead. As a matter of fact, Yii is one of the most efficient PHP frameworks around.

Friday, 24 February 2012

Model View Controller(MVC) in PHP

MVC is a design pattern. A Design pattern is a code structure that allows for common coding frameworks to be replicated quickly.

The MVC paradigm is a way of breaking an application, or even just a piece of an application's interface, into three parts: the model, the view, and the controller. MVC was originally developed to map the traditional input, processing, output roles into the GUI realm:

Input --> Processing --> Output
Controller --> Model --> View