Login With Google CodeIgniter : OAuth API PHP Client

Google’s OAuth 2.0 APIs can be used for open authentication. By this we can access user’s data from server after authorizing user via Google account. In this tutorial, we are going to explain how you can implement Google open authentication to connect with your website using CodeIgniter. You can achieve this login mechanism using Google API php …

Login With Facebook PHP CodeIgniter : OAuth Login

OAuth is simply an open authentication that is used for providing access to the server data after authorizing a user via third party services. In this tutorial, we are going to explain how you can implement Facebook login via open authentication to connect with your website using CodeIgniter. You can achieve this login mechanism using …

CodeIgniter – Getting Started With MVC

CodeIgniter is a simple web application development framework for PHP . By its modular approach we can use its inbuilt libraries and helpers. It has a three-tier architecture i.e. Model-View-Controller (MVC) which is easy to use by which the functional process logic, data access, data storage and user interface can be developed. You can also refer our previous tutorial For CodeIgniter installation and configuration. …

CodeIgniter Installation and Configuration

CodeIgniter is a simple web application development framework for PHP. By its modular approach we can use its inbuilt libraries and helpers in our application. We can separate logic from presentation by using a Model-View-Controller (MVC) pattern. In this tutorial we are going to explain you, how to install and configure the CodeIgniter framework. Below mentioned are the step by …

CodeIgniter Image Library For Image Manipulation

While developing any web application there is a need to manipulate image dynamically such as while uploading an image. In this tutorial we are going to explain an example, which shows how to use CodeIgniter’s image library for Image Manipulation. You can find Image_Lib.php class inside your CodeIgniter project’s system/libraries folder. First load image_lib library in your …

CodeIgniter Calendar Class For Creating Dynamic Calendar

In this tutorial we are going to explain an example, which shows how to use CodeIgniter’s Calendar class which enables you to create dynamic calendars. By using calendar template you can format the calendars in your own way as it gives 100% control over every aspect of its design. To load calendar library use: Syntax: $this->load->library(‘calendar’); You …