display data from database to dropdown CodeIgniter

后端 未结 6 1457
星月不相逢
星月不相逢 2020-12-03 08:54

I\'m having difficulty with display data from the db to dropdown.

This is what I have tried:

Model.php

        public funct         


        
6条回答
  •  隐瞒了意图╮
    2020-12-03 09:35

    Better I think, in your view use:

    On your model get all your data in an array with:

    public function get_all_description()
    {
        $query = $this->db->get('description');
        return $query->result_array();
    }
    

    In controller:

    $data['description']=$this->model->get_all_description();
    

    In view:

    for($i=0;$i

提交回复
热议问题