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.
MVC=>MODEL VIEW CONTROLLER
ORM =>OBJECT RELATION MAPPING
ORM stands for a technique in which we turn every RELATION(Table) into an OBJECT and its ATTRIBUTES as data members of the class.
*If you are familiar with Entity framework in .Net consider the Db Context class which represents a database
*In regular MVC Model classes are created to represent Tables of the concerned database.
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.
MVC=>MODEL VIEW CONTROLLER
ORM =>OBJECT RELATION MAPPING
ORM stands for a technique in which we turn every RELATION(Table) into an OBJECT and its ATTRIBUTES as data members of the class.
*If you are familiar with Entity framework in .Net consider the Db Context class which represents a database
*In regular MVC Model classes are created to represent Tables of the concerned database.
No comments:
Post a Comment