InterviewSolution
| 1. |
What Is Helper In Codeigniter? How Can You Load A Helper File? |
|
Answer» Helpers are the group of functions in a particular CATEGORY that assist you to perform specific functions. In CodeIgniter, there are many helpers like: URL Helpers: helping in CREATING links. TEXT Helpers: perform various text formatting routines. Cookies Helpers: set and read cookies. To load helper file, use the following command: $this->load->model('ModelName'); Helpers are the group of functions in a particular category that assist you to perform specific functions. In CodeIgniter, there are many helpers like: URL Helpers: helping in creating links. Text Helpers: perform various text formatting routines. Cookies Helpers: set and read cookies. To load helper file, use the following command: $this->load->model('ModelName'); |
|