up vote 1 down vote favorite
1
share [g+] share [fb]

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

link|improve this question

Did you do some reading, for example this: en.wikipedia.org/wiki/Model%E2%80%93view%E2%80%93controller – lutz Nov 20 '09 at 10:10
feedback

3 Answers

up vote 2 down vote accepted

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.

link|improve this answer
feedback

This is a link you can refer to.

link|improve this answer
feedback

Have a look at the respective section in the cookbook.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.