How to call codeigniter controller function from view

后端 未结 14 1744
小蘑菇
小蘑菇 2020-11-27 05:53

How to call codeigniter controller function from view? When i call the function in a controller, get a 404 page.

14条回答
  •  抹茶落季
    2020-11-27 06:38

    I would like to answer this question as this comes all times up in searches --

    You can call a controller method in view, but please note that this is not a good practice in any MVC including codeigniter.

    Your controller may be like below class --

    
    
    Now You can call this function in view files as below --
    abc($id) ;
    
    ?>
    

提交回复
热议问题