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 Multiple Files Upload using PHP, jQuery

Introduction The example, AJAX multiple files upload using PHP jQuery, will show you how to upload multiple files using PHP, AJAX and jQuery without page refresh. This multiple files upload tutorial example is very useful where you need to upload multiple files in a web application. In this example multiple files are selected using the browse button by holding keyboard’s…

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…

AJAX File Upload using PHP, jQuery

Introduction I will show you how to upload a file using PHP, AJAX and 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. PHP script stores the file into the specified location and…

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…

Dynamically Generate Months In PHP

Introduction Sometimes you may need to select month value from drop-down or select option box and for that you hardcode the month values in HTML option fields. It is possible to dynamically generate month values using PHP and you can use those generated month values in HTML select option tag. This way you do not need to hardcode the month values and…

Dynamically Generate Years In PHP

Introduction Here in this example I am going to show you how to generate years in PHP language. Sometimes you may need to select year value from dropdown or select/option field and for that you hardcode the year values in HTML option fields. It may be cumbersome at the point when you want to add a new year value to the option…

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…