FuelPHP – Complete Working Example – In this chapter, we will learn how to create a complete MVC based BookStore application in FuelPHP.
FuelPHP – Error Handling & Debugging – FuelPHP provides an excellent support for handling the errors and debugging the application. Let us understand error handling and debugging in this chapter.
FuelPHP – Unit Testing – Unit testing is an essential process in developing large projects. Unit tests help to automate the testing of the applicationâs components at every stage o
FuelPHP – Events – An event is an action or occurrence recognized by the program that may be handled by the program itself. For example, we may define an action or event named my_
FuelPHP – Email Management – Email functionality is the most requested feature in a web framework. FuelPHP provides an elegant email class bundled as a package. It is used to send simple pl
FuelPHP – Profiler – Profiler is one of the important tools to analyze and improve the performance of the application. FuelPHP provides an excellent profiler to profile the applicat
FuelPHP – Modules – Module is a great way to write reusable web functionalities such as blog, album, chat, etc. Module does not disturb the other code in the web application. It li
FuelPHP – Packages – Packages are similar to modules in code reuse but differs in the following ways,
FuelPHP – Cookie & Session Management – Cookie provides client side data storage and it supports only a small amount of data. Usually, it is 2KB per domain and it depends on the browser. Session provi
FuelPHP – Ajax – AJAX is a modern technology in web programming. It provides options to send and receive data in a webpage asynchronously, without refreshing the page. Let us le