Zend MVC examples.

I've a keen interest in the progress of the web and where it will take us. This section is purely centered on one revolution to the web - MVC. Module View Controllers were soemthing that moved into the web sphere around 2002 and took hold around 2005.
MVCs merely states the structure in which code is structures and built. A View is usually just something that holds HTML and takes information and puts it into the HTML. - this replaces those meshed HTML (and another language eg PHP/JSP/ASP) pages of early 2000.
A Controller is usually one real file that tells the system what to do - load view(s) and run module(s).
A Module is a section of code that does soemthing. for example a module might extract information from the database (which the controller would pass to the view fro insertion into the html page)