Category: Codeigniter
Codeigniter
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…
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…
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…
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…
Introduction Here I am going to show CodeIgniter left outer join example. I will use CodeIgniter’s Query Builder Class to build left outer or left 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…
Introduction In this tutorial I will show you CodeIgniter join example. I will use CodeIgniter’s Query Builder Class to build join queries for fetching data from multiple tables. The SQL Join clause is used to combine records together from two or more tables in a database. A Join locates related column values in two or…