Code your dreams into reality.
Every line of code is a step towards a better future.
Embrace the bugs, they make you a better debugger.

CodeIgniter 4 Stripe Payment Gateway Integration Tutorial

CodeIgniter 4 Stripe Payment Gateway Integration Tutorial

Stripe provides PHP libraries that allow developers to easily integrate the Stripe payment gateway into PHP frameworks such as CodeIgniter or Laravel. Let’s start integrating the Stripe payment gateway into the application: Step 1: Install Stripe PHP Library Run the following command to install PHP stripe library using composer command: Step 2: Set Up Stripe … Read more

CodeIgniter 4 DataTables Example Tutorial

CodeIgniter 4 DataTables Example Tutorial

DataTables JS is a third-party JS library that allows developers to display data in an HTML table along with some features like search, pagination, and sorting. Let’s start to integrate dataTables js in project: Step 1: Set Up CodeIgniter 4 Run the following command to install and set up codeIgniter 4 application in your system … Read more

CodeIgniter 4 Export to Excel Tutorial

How to Export Data in Excel using Codeigniter 4

phpoffice/phpspreadsheet 3rd party php library allows developers to build a feature into the application to export data from all database tables to excel, csv, pdf, etc files. Let’s start to export data from mysql database to excel file or csv file in codeigniter: Step 1: Install the PHPSpreadsheet Library Run the following composer command to … Read more

CodeIgniter 4 Import Excel File Tutorial

CodeIgniter 4 Import Excel File Tutorial

PHPSpreadsheet is a third party library that allows developers to create feature to import and export excel/csv file from database in any PHP framework such as codeigniter, laravel, yii, etc. Let’s start to create import excel or csv file data in mysql database using phpspreadsheet library in codeIgniter 4 applications: Step 1: Install the PHPSpreadsheet … Read more

CodeIgniter 4 Google Login Tutorial

CodeIgniter 4 Google Login Tutorial

PHP provide SDK that helps developers to add google login feature in application. Let’s start to integrate google login using php sdk library in codeIgniter 4 applications: Step 1: Set Up Google API Go to Google Cloud Console, and click on Select a Project to create New Project, then go to the Credentials tab on … Read more

CodeIgniter 4 Login and Registration Tutorial

CodeIgniter 4 Login and Registration Tutorial

To create a login, registration, and logout authentication system in a CodeIgniter application you must use the build Session() method to store logged in user data in session. Let’s start to create login, registration and logout authentication system: Step 1: Set Up CodeIgniter 4 Run the following command to install codeIgniter 4 application: Step 2: … Read more

Codeigniter 4 Rest API Tutorial

Codeigniter 4 Rest API Tutorial

Many methods have been added in the new CodeIgniter 4 version, which makes it easier for developers to create REST APIs using minimal code. Let’s start creating the REST API and call it from Postman or curl: Step 1: Set Up CodeIgniter 4 Run the following command to install codeigniter application in server: Step 2: … Read more

CodeIgniter 4 QR Code Generator Tutorial

CodeIgniter 4 QR Code Generator Tutorial

simplesoftwareio qrcode is a popular library for creating QR code in PHP and its frameworks like codeIgniter, laravel, yii, etc. Here are steps to generate qr codes in codeIgniter application: Step 1: Install the simplesoftwareio/simple-qrcode Package Run the following command install PHP package simplesoftwareio/simple-qrcode for qr code generator: Step 2: Create a Controller Go to … Read more