PHP.MVC IS An Open Source Framework for PHP Web Applications. Introduction
php.MVC implements the Model-View-Controller (MVC) design pattern, and encourages application design based on the Model 2 paradigm. This design model allows the Web page or other contents (View) to be mostly separated from the internal application code ( Controller / Model
The Framework Provides A Single Entry Point Controller. The Controller Is Responsible for Allocating Http Requests To The Appropriate Action Handler (Model) Based On Configuration Mappings.
The Model contains the business logic for the application. The Controller then forwards the request to the appropriate View component, which is usually implemented using a combination of HTML with PHP tags in the form of templates. The resulting contents are returned to the client browser, OR Via Another Protocol Such as SMTP.
php.MVC is a PHP port of Jakarta Struts. It currently supports many features of Struts, including declarative application configuration via the XML digester. For example, mappings from the various Action business logic components to appropriate results pages can be specified declaratively in the XML CONFIGURATION FILE.
Release News: 06 April 2004 - PHP.MVC Web Application Framework Beta 0.3.4
A cvs snapshot of the Latest php.mvc core library is available for Download In Tgz or Zip Format: phpmvc-base-beta-0.3.4-release_2004_04_06_1400
This Release Contains bug fixes and some minor enhancements.
PHP.MVC USERS Guide 101 A New User Guide Is Available: http://www.phpmvc.net/docs/guides/guidesidx.php? DOC = PhPMVC-101