Erlang – find
In this guide, we will discuss Erlang find. This method is used to find if a particular key exists in the map. Syntax find(key,map) Parameters key − This is the list…
In this guide, we will discuss Erlang find. This method is used to find if a particular key exists in the map. Syntax find(key,map) Parameters key − This is the list…
FuelPHP Presenters provides an additional layer after the controller to generate views. Once the controller processes the input and is done with the business logic, it sends the control to…
In this guide, we will discuss Erlang from_list. This method is used to generate a map from a list. Syntax from_list(Lst) Parameters Lst − This is the list which needs to…
In this guide, we will discuss Erlang Maps. A map is a compound data type with a variable number of key-value associations. Each key-value association in the map is called…
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…
In this guide, we will discuss Erlang binary_to_atom. This method is used to convert a binary value to an atom value. Syntax binary_to_atom(binaryvalue) Parameters binaryvalue − This is the binary value…
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…