Setup Codeigniter, Netbeans and XAMPP in Windows

This tutorial will show you how to configure Netbeans, Codeigniter, XAMPP together in Windows environment so that it would be easier environment to write PHP code on Netbeans editor without thinking much about the programming syntax error which is occurred most of the time when we write code in a notepad. It would be easier to run the Codeigniter application…

Create WordPress like add tags using Codeigniter and jQuery

I will show you how to create WordPress like add tags using Codeigniter and jQuery. This add tags tutorial example is very helpful to implement the multiple tags adding functionality for a blog. In this example, tags are added to the textarea just by “type and press the Enter key”. Codeigniter controller stores tags into the database table and returns…

AJAX Multiple Files Upload using Codeigniter, jQuery

Introduction I will show you how to upload multiple files using Codeigniter, AJAX and jQuery without page refresh. This multiple files upload tutorial example is very helpful to implement the upload functionality. In this example the files are selected using the browse button and files are uploaded to the uploads directory. Codeigniter controller stores files into the defined location and…

AJAX File Upload using Codeigniter, jQuery

Introduction I will show you an example on Ajax file upload using Codeigniter jQuery without page refresh. This file upload tutorial example is very helpful to implement the upload functionality. In this example the file is selected using the browse button and file is uploaded to the uploads directory. Codeigniter controller stores the file into the specified location and returns response…

Codeigniter 3 MySQL Online Visitor Tracking System

Table of Contents Introduction Prerequisites Project Directory Autoload Configuration Encryption Key Creating Library Creating Hooks Hooks Configuration Database Configuration MySQL Table Inserting Data Model Controller View File Defining Route Static Resources Testing Visitor Tracking System Source Code Introduction Every website owner would like to know the progress to the count of the online visitors because it gives them overall idea…

Nested Comments using Codeigniter, AJAX

Introduction Here you will see how to create nested comments using Codeigniter AJAX MySQL. In my previous tutorial I have shown how to create Nested comment system in PHP, AJAX. Here I am going to show you how to do the same thing but using Codeigniter 3, MySQL and AJAX.

Infinite dynamic Multi-level nested category with Codeigniter and MySQL

Introduction Here I will show you how to create infinite multi-level nested categories with Codeigniter and MySQL. In my previous tutorial Infinite dynamic Multi-level nested category with PHP and MySQL , I wrote how to build a nested multilevel categories. So I am again going to write the same tutorial but this time with Codeigniter 3 framework. Prerequisites Codeigniter 3.1.11, PHP…

Google Column Chart Using Codeigniter

Google Column Chart You might know that Google chart basically displays different statistical data on different chart types such as column chart, bar chart, line chart, pie chart etc. You can integrate Google chart with any server side technology but here I will show you how to integrate Google column chart with Codeigniter. This tutorial shows step by step so…

CodeIgniter Full Outer Join Example

Introduction In this tutorial I will show CodeIgniter full outer join example. I will build full outer join or full join query using MySQL’s UNION for fetching data from multiple tables. The purpose of a join is to combine the data across tables. A join is actually performed by the where clause which combines the specified rows of tables. If…

Codeigniter Right Outer Join Example

Introduction Here I am going to show CodeIgniter right outer join example. I will use CodeIgniter’s Query Builder Class to build right outer or right join queries for fetching data from multiple tables. The purpose of a join is to combine the data across tables. A join is actually performed by the where clause which combines the specified rows of…