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
Web and application development