How to retrieve data from the database and display it in a html table using Codeigniter

前端 未结 3 587
余生分开走
余生分开走 2021-01-16 04:47

anyone please help me to retrieve the db data and how to view it in html table.is the coding i given is correct or not if not can you please say how i have to give. in order

3条回答
  •  野的像风
    2021-01-16 05:22

    Put this in the end of your edit_content function in your controller

    $this->load->view('edit_content/edit_content', $result);
    

    Loading of the view should be done in the controller. From what I see, your model have returned the result so the last line is not executed.

提交回复
热议问题