On 5/13/08, Rishi Daryanani <[EMAIL PROTECTED]> wrote: > > Hi, > I'm a total newbie, but I am reading up on the Zend > framework and trying out some tutorials, very useful.. > However everything I've read/tried involves the > "application/views" and "application/controllers" > directories to create views and controllers. I have > not yet come across any mention of the "models" > subdirectory. > > Where can I learn more about this and what it's used > for? > > Am I right in assuming that I can build my own > functionality (e.g. user login form, CMS) entirely > with the concept of a controller and view? (but not a > model)
The model is just a representation of data, which more often than not means a class with which you retrieve data from the database, i.e. take a look at Zend_Db. Many thanks > > > > -- Vincent
