Tag Archives: mvc

June 19, 2010

MVC – Should you use it?

Author
Jason
Time
5:46 pm
Filed under
Tags
,

MVC - Model View Controller, is a sofware design pattern. The aim of MVC is to provide clean separation between data (the model) and what visitors/users see (the view). The controller sits between the model and the view marshalling data between them. MVC is a pattern that can be applied to numerous software development situations, from developing desktop/mobile applications through to websites. Here, I'll be discussing MVC in relation to website development. User <--> View ... read more