Using Basic Auth REST API Development in CodeIgniter 4

Using-Basic-Auth-REST-API-Development-in-CodeIgniter-4

CodeIgniter 4 is an open source framework of PHP. There are several libraries available in codeigniter 4 which makes application development very easy. Inside this article we will see the concept of Using Basic Auth REST API development in CodeIgniter 4. Additionally we will cover the API data validations and their outputs. Article … Read more

REST API Development with Validation in CodeIgniter 4

REST-API-Development-with-Validation-in-CodeIgniter-4

CodeIgniter 4 is an open source framework of PHP. There are several libraries available in codeigniter 4 which makes application development very easy. Inside this article we will see the concept of REST API development with validation in CodeIgniter 4. We will discuss about each method of CRUD operation like Create, Read, Update … Read more

HTTP CURL Request Service in CodeIgniter 4 Tutorial

HTTP-CURL-Request-Service-in-CodeIgniter-4-Tutorial

Inside this article we will see the concept of using HTTP CURL service in CodeIgniter 4. In CodeIgniter 4 it’s a class means CURL request service is a CURLRequest Class. The cURL stands for ‘Client for URLs‘, originally with URL spelled in uppercase to make it obvious that it deals with URLs. Since … Read more

Concept of Query Grouping in CodeIgniter 4 Tutorial

Concept-of-Query-Grouping-in-CodeIgniter-4-Tutorial

CodeIgniter 4 provides the complete set of Query builder methods to use in querying database. Inside this article we will see the concept of query grouping in codeigniter 4 Query builder. In Query builder to use query grouping we have a method available. Query grouping allows us to create groups of WHERE clauses … Read more

Complete Concept of Named Route in CodeIgniter 4 Tutorial

Complete-Concept-of-Named-Route-in-CodeIgniter-4-Tutorial

In CodeIgniter we will see that routes configuration is totally different from it’s previous version. Inside this article we will learn about Named route in CodeIgniter 4. Routes configuration are the application level configuration which controls the application redirection. Inside this we will cover complete concept of Named route in CodeIgniter 4. … Read more

Running Raw Queries in CodeIgniter 4 Tutorial

Running-Raw-Queries-in-CodeIgniter-4-Tutorial

Inside this article we will see the concept of running raw queries. Raw query means running direct sql query of insert, update, delete etc commands. Query execution in raw format probably is not a good approach. But in some cases where we need, you can use it. While using raw queries we also … Read more

CodeIgniter 4 Models with Multiple Database Connection

CodeIgniter-4-Models-with-Multiple-Database-Connection

If we are building a large project like eCommerce or CRM, hopefully we should add more than one database to manage everything like inventory, leads, customers etc. Inside this article we will learn the concept of CodeIgniter 4 models with multiple database connection. This tutorial will be very easy to learn and to … Read more