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

Image Manipulation Class in CodeIgniter 4 Tutorial

Image-Manipulation-Class-in-CodeIgniter-4-Tutorial

Image manipulation class in CodeIgniter 4 is a library which performs many super things. Here, we have few list of them. Image resize Image rotate Image crop Thumbnail generation Availability of image library provides lots of flexible functions which works with image about any kind of alteration. While working with image functionality in … Read more

How To Rotate Image in CodeIgniter 4 Tutorial

How-To-Rotate-Image-in-CodeIgniter-4-Tutorial

Rotating image like of 90 deg, 180 deg is sometimes works when we work with UI/UX. It is super easy in codeigniter 4. In CodeIgniter 4 we have image processing library due to which everything like resize, rotate, crop, adding a text watermark is very easy. While going through this article content, you … Read more

Add Text Watermark on Image in CodeIgniter 4 Tutorial

Adding a text watermark in image is super easy in codeigniter 4. In CodeIgniter 4 we have image processing library due to which everything like resize, rotate, crop, adding a text watermark is very easy. While going through this article content, you will also see what extensions in php we need while working … Read more

CodeIgniter 4 FullCalendar Ajax CRUD Tutorial Example

CodeIgniter-4-FullCalendar-Ajax-CRUD-Tutorial-Example

In most applications we need sometime a schedule calendar so that we can add our tasks, events, functions. Those scheduled tasks act like a reminder to the calendar. This feature is very interesting to implement if you are providing adding events to your clients, users, etc. Inside this article we will see the … Read more

CodeIgniter 4 Drag and Drop File Upload Using Dropzone

CodeIgniter-4-Drag-and-Drop-File-Upload-Using-Dropzone

In many applications, you have been observed file upload process is bit attractive. Inside this article we will see the concept of CodeIgniter 4 drag and drop file upload using dropzone jquery plugin. Dropzone.js is a jquery plugin, dropzone.js through we can select one by one image and also with preview. Uploading files … Read more