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 Bar Chart Tutorial

CodeIgniter 4 Bar Chart Tutorial

The Chart.js library is a third-party JavaScript library that developers can use to create bar charts, line charts, graph charts, pie charts, etc, in applications. Let’s start creating bar charts and displaying dynamic data from database in CodeIgniter 4 application: Step 1: Set Up Database Run the following command to create a database and a … Read more

Codeigniter 4 jQuery UI Autocomplete Tutorial

Codeigniter 4 jQuery UI Autocomplete Tutorial

The jQuery UI Autocomplete plugin allows developers to build autocomplete searches into applications for a user-friendly feature that suggests possible results based on user input. Let’s start to create autocomplete search input box using jQuery UI: Step 1: Setting Up CodeIgniter 4 Run the following command to install and set up codeIgniter 4 application in … Read more

CodeIgniter 4 Google Maps Integration Tutorial

CodeIgniter 4 Google Maps Integration Tutorial

Google provides a JavaScript library for developers to integrate Google Maps into PHP CodeIgniter 4 applications to display locations, lay out routes, or show markers for specific points of interest. Let’s start to integrating google maps and display locations, lay out routes, or show markers in applications: Step 1: Set Up Google Map API Account … Read more

CodeIgniter 4 Google Address Autocomplete Tutorial

CodeIgniter 4 Google Address Autocomplete Tutorial

Google provides a JavaScript library so that developers can implement the autocomplete search feature of places or addresses in PHP codeigniter 4 application. Let’s start to create places autocomplete search box using google map or geolocation apis: Step 1: Set Up Google Places API Account Create a Google Places API account to get the secret … Read more

CodeIgniter 4 Google Pie Chart Integration Tutorial

CodeIgniter 4 Google Pie Chart Integration Tutorial

Google provides a JavaScript library that allows developers to integrate it into applications to create pie charts using G Chart JS. Let’s start creating a pie chart using the google chart js library: Step 1: Set Up CodeIgniter Project Download CodeIgniter 4 from the official website, And extract the downloaded file and move the extracted … Read more

Codeigniter 4 Send Email with Attachment Tutorial

Codeigniter 4 Send Email with Attachment Tutorial

In CodeIgniter 4 applications, the CodeIgniter\Email\Email library function attach() allows developers to create a feature for sending emails with attachments. Let’s start sending an email with an attachment (file, image, etc.): Step 1: Set Up Email Settings Edit app/Config/Email.php file, and set up email details: Step 2: Create a Controller Go to app/Controllers directory, and … Read more

CodeIgniter 4 Generate a PDF Tutorial

CodeIgniter 4 Generate a PDF Tutorial

The PHP TCPDF library provides developers with functions to make PDF creation easier. Let’s start to generate pdf file: Step 1 – Set Up CodeIgniter 4 Go to abc.com and download codeIgniter 4 zip file, and extract downloaded zip on xampp/htdocs directory. Step 2 – Install TCPDF Run the following command to install tcpdf library … Read more

Codeigniter 4 Pagination Example Tutorial

CodeIgniter 4 Pagination Example

CI 4 provide paginate() function that allow developers to show data in html table with paginated links. Let’s start to create table and show paginated data from server in codeIgniter 4 with bootstrap: Step 1: Set up CodeIgniter Project Download CodeIgniter 4 from the official website:https://codeigniter.com/user_guide/installation/index.html., and extract download zip file in xampp/htdocs directory. Step … Read more

Country State City Dependent Dropdown using Ajax in Codeigniter 4

Country State City Dependent Dropdown using Ajax in Codeigniter 4

In this tutorial, i will create country state city dependent dropdown features in CodeIgniter 4 applications using jQuery ajax. Here are steps to country state city dependent dropdown using ajax: Step 1: Setting Up CodeIgniter 4 Download CodeIgniter 4 from the official website:https://codeigniter.com/user_guide/installation/index.html., and extract download zip file in xampp/htdocs directory. Edit .env file, and … Read more