InterviewSolution
Saved Bookmarks
| 1. |
What is Codeigniter Library and how we can load it? |
|
Answer» Codeigniter PROVIDES a rich SET of libraries, which indirectly INCREASE the speed of developing an application. These Codeigniter system library is located in system/libraries. In Codeigniter the library can be LOADED with $this->load->library('class name'); If we WANT to load multiple libraries then we can use like $this->load->library(array('comment', 'blog')); Related Article: Wordpress interview questions |
|