views:

112

answers:

3

Could someone explain me about MVC pattern? How does it help cakephp framework?

A: 

This is a link you can refer to.

Ngu Soon Hui
A: 

Have a look at the respective section in the cookbook.

dhofstet
+1  A: 

MVC stands for Model, View, Controller.

Model = Data (Database tables)

View = HTML, CSS, JavaScript, etc

Controller = Main logic, a contract between Model & View.

In simple and graspable terms,

MVC allows you to develop your applications in a way that your business data and presentation data are separated. With this, a developer and designer can work independently on a MVC app without their work clashing. MVC makes your app avail OOP too.

Sarfraz