FuelPHP – Views
View is the presentation layer of the MVC application in FuelPHP Views. It separates the application logic from the presentation logic. When a controller needs to generate HTML, CSS, or any…
View is the presentation layer of the MVC application in FuelPHP Views. It separates the application logic from the presentation logic. When a controller needs to generate HTML, CSS, or any…
HTTP request and HTTP response play an important role in any web application of FuelPHP - Requests & Response. We need to get the complete details of the http request…
Routing maps request an URI to a specific controller's method. In this chapter, we will discuss the concept of routing in FuelPHP in detail. Configuration Routes configuration file is located at fuel/app/config/routes.php. The…
Fuelphp Controllers are responsible for handling each request that comes into FuelPHP application. According to FuelPHP, controllers are located at fuel/app/classes/controller/. Let's first create an Employee Controller. employee.php <?php class Controller_Employee extends…
In this FuelPHP Configuration chapter, we will understand how to configure a FuelPHP application. By default, configuration files are stored inside the fuel/app/config folder. The application's main configuration is fuel/app/config/config.php. The configuration is…
In this FuelPHP - Simple Web Application chapter, we will see how to create a simple web application in FuelPHP framework. As discussed earlier, you know how to create a…
FuelPHP Architecture Overview is based on battle tested Model-View-Controller architecture along with HMVC (Hierarchical MVC) support. While MVC provides flexible and layered application development, HMVC goes one step further to enable widgetization of the…
In this FuelPHP - Installation chapter we will explains how to install FuelPHP framework on your machine. FuelPHP installation is very simple and easy. You have two methods to create…
FuelPHP Tutorial is an open source web application framework, designed for developers who need a simple and elegant toolkit to create full-featured web applications. The development of FuelPHP started in…
In Django, Ajax essentially is a combination of technologies that are integrated together to reduce the number of page loads. We generally use Ajax to ease end-user experience. Using Ajax…