CodeIgniter Interview Questions – Set 04
How can you extend a class in CodeIgniter? You have to build a file name application/core/MY_Input.php and declare your class with Class MY_Input extends CI_Input {}to extend the native input class in CodeIgniter. Explain controller in CodeIgniter. A controller is the intermediary between models and views to process the HTTP request and generates a web page. … Read more