Question:Differentiate between helper and plug-in?
Answer
The main difference is that a plug-in usually provides a single function, whereas a Helper is usually a collection of functions. Helpers are also considered a part of the core system; plug-ins are intended to be created and shared by our community.In loading the difference is$this->load->plugin(plugin name);
$this->load->helper (file name of the helper);
+ Report
Differentiate between helper and plug-in?