CodeIgniter: Access Third Party Libraries
In this tutorial we are going to explain how we can use third party folder in codeigniter to save and access another libraries class. Follow up the guide to learn more.
In this tutorial we are going to explain how we can use third party folder in codeigniter to save and access another libraries class. Follow up the guide to learn more.
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 …
Continue reading “Login With Google CodeIgniter : OAuth API PHP Client”
A shopping cart is a software package and Ecommerce application that acts as an online store’s catalog and ordering process. When a user is browsing your site at that time Cart Class allows the items to be added to a session that stays active . These items can be retrieved and displayed in a standard …
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 …
Continue reading “Login With Facebook PHP CodeIgniter : OAuth Login”
CodeIgniter’s URL helpers are groups of utility functions which will help you to call ,create and maintain url. It mainly have more than 20 helpers some of them you might be familiar with are URL, email, form etc. These are some common helper functions that generaly used in web based application for email, files, URLs. …
JavaScript is a dynamic language. It is mainly used for client-side scripting i.e. user requests an HTML page with JavaScript in it, the script is sent to the browser and then browser perform some task like effects, events etc. Here you will learn how one can use CodeIgniter’s JavaScript class after loading the provided JavaScript …
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 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 …
Continue reading “CodeIgniter Installation and Configuration”
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 …
Continue reading “CodeIgniter Image Library For Image Manipulation”
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 …
Continue reading “CodeIgniter Calendar Class For Creating Dynamic Calendar”
Data encryption and decryption is nothing but just converting a plain text into something that appears to be random and meaningless and vice verse. Generally this encryption is opted by the developers to make the data secured like for password, URL, credit card numbers and so on. If you are using CodeIgniter than to encrypt …
Mostly in web applications there is a need to protect your website from getting spammed. So we need to create a Captcha spam protection to stop the spamming activities. This blog post demonstrate you, how to implement simple captcha using CodeIgniter captcha helper file. Captcha is basically a random generated captcha string and which can be …
We are going to explain you how we can use CodeIgniter Table Library efficiently to create HTML table. The functions in Table Class enable you to auto-generate HTML tables from arrays or database result sets. The Table class also allow you to set a table template that helps to specify the design of your layout. Here is the template …
In this tutorial we are going to explain you how to perform CodeIgniter select query to fetch data from database using date range and ID. In this demo we are using input box and date selector. In input box you can enter an ID which you want to search and using date selector you can search data …
This tutorial will demonstrate how to make “Pagination in CodeIgniter”. In this post we used CodeIgniter pagination class by initializing pagination library. Pagination is one concept used for web applications. Wherever we have a bulk of data and need to show them, then it allows you to navigate from page to page, at that time we …
In this tutorial I am going to show how to remove index.php from URL using .htaccess file in CodeIgniter. htaccess is the shortened used for Hypertext Access, which is a powerful configuration file that controls the directory “.htaccess”. It is used by Apache based web servers to control various server features. Now The Question Arises …
Continue reading “CodeIgniter Remove index.php By .htaccess”
Sessions are one of the most important part for any web applications, as it helps to maintain user’s “state” and to track their activity when they visit your website. Here we have use CodeIgniter’s session class that will maintain and help to store session information for each user. To use this class you need to …
jQuery’s Ajax methods really made easy to post a data and return that data without refreshing the page. We can apply this jQuery Ajax post in CodeIgniter as well. Syntax for Ajax: $.ajax({name:value, name:value, … }) Before proceeding further we consider that you are a bit familiar with CodeIgniter PHP framework. With the help of an …