PHP Framework?
PHP Framework 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), making it easier for designers and programmers to focus on their respective areas of expertise. 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,… Read More »
Posted: 02 Jul 2010 Category: blog
CodeIgniter vs Zend
CodeIgniter Set Up: CodeIgniter is very easy to set up. Copy all the framework files to the web server and it’s good to go. It also has a small folder size – about 2.1 Mb. Documentation: The documentation is very well-structured and organized although it is a bit less detailed than the Zend framework documentation. CodeIgniter also has forums and a wiki which feature a lot of user-submitted code. Flexibility: CI is very flexible allowing almost all defaults to be modified. Performance: CI has about double the performance of the Zend Framework. Testing: CodeIgniter has a unit testing class… Read More »
Posted: 01 Jul 2010 Category: blog