What is FuelPHP FuelPHP is an open source web application framework. It is written in PHP 5.3 and implements HMVC pattern. HMVC is Hierarchical Model-View-Controller framework that allows to sub-request the controller, which returns the partial page such as comments, menus, etc., instead of the complete page as in normal MVC. FuelPHP is developed by … Continue reading FuelPHP Introduction
Month: March 2019
Array sorting provides a way to organize data sets in either alphabetical order or in numbers, in an ascending or descending manner. PHP provides inbuilt functions to sort an array. Here are the list. sort() – sorts arrays in ascending orderrsort() – sorts arrays in descending orderasort() – sorts associative arrays in ascending order, according … Continue reading PHP Sorting Arrays
What is Slim Slim is a PHP micro framework that helps you quickly write simple yet powerful web applications and APIs. PHP developers use Slim to develop RESTful APIs and web services.Key features include URL routing, session, and cookie encryption, client-side HTTP caching, and more. It’s the best framework for a small web application that … Continue reading Slim Introduction