CodeIgniter constructor is not work proper -


class model_demo extends ci_model{ function model_demo()   {     parent::model();   } } 

i'm working codeigniter constructor, , it's producing fatal error.

class model_demo extends ci_model{ function model_demo() {     parent::__construct(); } 

Comments