0

I write the following code but when i try access employee class it shows error message

class users extends CI_controller{
      function _construct(){
               parent::_construct();
                            }
                                }
class employee extends users{
                       }
HizClick
  • 51
  • 1
  • 9

1 Answers1

0

basically codeigniter only pick one class into one controller . it better to use a helper in which you define your class and then load helper and then call your methods within controller