InterviewSolution
Saved Bookmarks
| 1. |
How Can You Extend Class In Codeigniter? |
|
Answer» 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. 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. |
|