Category: Codeigniter

How to Get Backup Site and Database in Codeigniter

How to Get Backup Site and Database in Codeigniter


Here I have developed an application in Codeigniter which will help you to take backup as per your wish wnenever you want to take backup. While most web hosting company do a daily backup of a customer’s database and site, relying on them to make backups and provide them at no cost is risky also. … Continue reading How to Get Backup Site and Database in Codeigniter

How to use Join Query in CodeIgniter – Examples

How to use Join Query in CodeIgniter – Examples


CodeIgniter Join Query Example JOIN Queries (or JOIN Statements) are used to combine data from two or more database tables using a common field name. There are different types of joins available based upon the way they pull off the data from the db. For better understanding I go by example. Sample Database Tables Consider … Continue reading How to use Join Query in CodeIgniter – Examples

CodeIgniter Beginner Tutorial 2–Introduction to MVC


In this tutorial I’m going to show you the basics of implementing MVC using CodeIgniter. MVC stands for Model View Controller and its commonly used to separate logic from presentation. The Model handles the database manipulation, the Controller handles the logic and the View handles the presentation. That’s all I can share to you since … Continue reading CodeIgniter Beginner Tutorial 2–Introduction to MVC

CodeIgniter Beginner Tutorial 3– Playing with the Database


In this tutorial were going to play around some of the functions that are available in CodeIgniter that will allow us to manipulate the database ninja-style. Remember that you can always use the awesome codeIgniter user guide if you want to take a look at what other functions are available since I’m not going to tackle all … Continue reading CodeIgniter Beginner Tutorial 3– Playing with the Database

CodeIgniter Beginner Tutorial 1–Configuring CodeIgniter

CodeIgniter Beginner Tutorial 1–Configuring CodeIgniter


In this tutorial I’m going to show you how to configure codeIgniter. Requirements Wampserver CodeIgniter   Resources Here are some of the links that you might want to check out in the process of learning how to do things in CodeIgniter. Nettuts – Everything you need to know to get started with CodeIgniter – this is … Continue reading CodeIgniter Beginner Tutorial 1–Configuring CodeIgniter