User Agent Class Concept in CodeIgniter 4 Tutorial

User-Agent-Class-Concept-in-CodeIgniter-4-Tutorial

User Agent Class is used to capture the user device identity like browser used, operating system used, mobile type etc. In CodeIgniter we have inbuilt class for this. The User Agent class is always available directly from the current IncomingRequest instance. We will see in this article. By default there are several user … Read more

Parametrized Routes in CodeIgniter 4 | Parameters Routing

Parametrized-Routes-in-CodeIgniter-4-Parameters-Routing

This is very common to every web application i.e Passing parameters to URLs. Also called as parameterized routing of application. Inside this article we will see the concept of Parameterized Routing in CodeIgniter 4. Already we have articles over Group routes in CodeIgniter 4 and Routing Tutorial in CodeIgniter 4. Please check. We … Read more

CodeIgniter 4 Route Group Tutorial | Route Grouping

CodeIgniter-4-Route-Group-Tutorial-Route-Grouping

Already we have an article over CodeIgniter 4 Routing. Inside this article we will create and see CodeIgniter 4 Route group. This tutorial is very interesting to see and learn. Group simply means collection. So here, we will have collection of routes which in terms called Route Group. We will see the concept … Read more

CodeIgniter 4 Command – Change PHP Spark Default PORT

CodeIgniter-4-Command-Change-PHP-Spark-Default-PORT

Inside this article we will see How to change default port of PHP spark command. Spark is the newest feature of CodeIgniter 4. How to create custom command in CodeIgniter click here. Here, we will create a custom command which starts application development server at different port. By default application runs at … Read more

CodeIgniter 4 Scaffolding Generator Tutorial with Example

CodeIgniter-4-Scaffolding-Generator-Tutorial-with-Example

Scaffolding auto generates Controller, Model, Migration & Seeder file inside CodeIgniter 4 application. Click here for CodeIgniter 4 Generators. These are the newest features of CodeIgniter 4. Inside this article we will see the concept of CodeIgniter 4 scaffolding generator. We will also consider an example to understand it in a very clear … Read more

Sorting Multi Dimensional Array in CodeIgniter 4

Sorting-Multi-Dimensional-Array-in-CodeIgniter-4

Inside this article we will see sort multi dimensional array using usort() method of PHP. We will sort by using array value. This will be interesting article to get the things in a very easy way. Step by step sorting multi dimensional array in codeigniter 4. Learn More – Read and Write Files … Read more

View Cells in CodeIgniter 4 Tutorial with Example

View-Cells-in-CodeIgniter-4-Tutorial-with-Example

View Cells allow us to insert HTML that is generated outside of controller. It simply calls the specified class and method, which must return a string of valid HTML. Inside this article we will see the complete concept to use View Cells in CodeIgniter 4. It will be an interesting article to learn. … Read more

Web Page Caching in CodeIgniter 4 Tutorial

Web-Page-Caching-in-CodeIgniter-4-Tutorial

CodeIgniter lets you cache your pages in order to achieve maximum performance. CodeIgniter is quite fast, the amount of dynamic information what we need to display in pages will correlate directly to the server resources, memory, and processing cycles utilized, which affect page load speeds. By caching pages, since they are saved in … Read more

CodeIgniter 4 Honeypot Tutorial | Security From Robots

CodeIgniter-4-Honeypot-Tutorial-Security-From-Robots

When we work with Forms in web application, we should consider the use cases of validations, security from robots, invalid scripts etc. Inside this article we will see a such security feature available in codeigniter 4 i.e Honeypot class. Article gives you the explanation of CodeIgniter 4 Honeypot Tutorial. It’s a security feature … Read more