The multi-language feature is necessary for the modern web application. This feature is used for the purpose of internationalization. In this tutorial, we will discuss how to implement the multi-language feature in CodeIgniter framework. Using CodeIgniter'...

By: CodexWorld Sep 25, 2015

Sometimes you need to upload the file to another server. Using CodeIgniter's upload and FTP library you can upload images or files to another server easily. CodeIgniter provides FTP class to transfer file to the remote server. At first we will upload the f...

By: CodexWorld Dec 11, 2015

CodeIgniter has a built-in Pagination library that helps to add pagination functionality in the data list. With this Pagination class, the page is refreshed when the data is loaded by the pagination links. If you want to integrate the pagination feature wi...

By: CodexWorld Sep 19, 2019

CodeIgniter helper file is a collection of functions, it help you to do task. CodeIgniter has more than 20 system helpers. All system helpers are stored in system/helpers directory. In this tutorial we will discuss about CodeIgniter custom helper. You will learn to create your own helper file and use helper function as per your needs. Now we will create a custom helper file and a function in this helper file. Also we will use this function in controller and views. We have already the users table into database, where all the user data have stored. We will create a

By: CodexWorld Aug 21, 2015

The MVC pattern separates an application in 3 modules: Model, View, and Controller. CodeIgniter is one of the most popular PHP frameworks and it follows the MVC pattern. Web Developer can be able to build full-featured web applications with CodeIgniter. Th...

By: CodexWorld Oct 16, 2017
keyboard_double_arrow_up