Explain the difference between helper and library in CodeIgniter.
Answer»
Helper
Library
Helper is a COLLECTION of common functions which we can use within Models, Views as well as in Controllers. Once we include the helper FILE, we can get access to the functions.
Library is a class that has a set of functions that permits for creating an instance of that class by $this->load->library() function.