Tag Archives: Learning Codeigniter

create-custom-library-in-codeigniter-3

Create a custom library in codeigniter 3

Hello World, Today i am going to create a custom library in codeigniter 3. Library refers to a class which is location in application/libraries folder. This folder contains only user defined libraries. Codeigniter have their own library which is located in system/libraries.

We should not modify the core library of any framework or any CMS becuase when you will update your system, your changes will disappear. Codeigniter provides facility to extend the core library classes and add some additional feature in it. In codeigniter, we can perform following things with library.

  • Create library from scratch
  • Extend the functionality of existing library
  • Replace the functionality of existing library

Continue reading

fetch-data-from-database-with-codeigniter-and-angularjs

Fetch data from database with codeigniter and angularjs

Hello World, Today we are going to fetch data from database with codeigniter and angularjs. In this tutorial we will learn that how we can fetch data from mysql database with codeigniter and show that data with angularjs. We will also learn that how we can implement search with angularjs. I have divided this tutorial in following parts.

Continue reading