Codeigniter model Undefined property

后端 未结 1 1162
春和景丽
春和景丽 2020-12-22 01:56

i have following code in the controller file which check for post varible pdf and execute following code

if(isset($_POST[\'pdf\']) && $_POST[\'pdf\']         


        
1条回答
  •  时光说笑
    2020-12-22 02:44

    You need to load model before use . Try this

     $this->load->model('votput_model');
     $this->votput_model->pdf($PDF_Name,$final_view);
    

    0 讨论(0)
提交回复
热议问题