PHP Codeigniter: set_value on dropdown menu

前端 未结 6 2350
温柔的废话
温柔的废话 2021-01-05 04:11

I have the following view but how do I apply set_value to it without it defaulting to Please select?

6条回答
  •  青春惊慌失措
    2021-01-05 04:31

    This should help:

    Controller (test.php)

    load->library('form_validation');
    
                //for base_url() function
                $this->load->helper('url');
    
                $list['data'] = $this->input->get('add_fields_type');
    
                $this->load->view('test_view.php', $list);
            }
    ?>
    

    View (test_view.php)

    
    
    
    

    Note: The third parameter of the set_select() determines whether it should be selected or not

提交回复
热议问题