1.

How to extend the class in CodeIgniter?

Answer»

You have to CREATE a FILE with the name EXAMPLE.php under application/core/ directory and declare your class with the below CODE:

Class Example EXTENDS CI_Input { // Write your code here}


Discussion

No Comment Found