2

我正在使用 codeigniter 表单下拉菜单。

add_store.php 代码是这样的:-

 <tr>
            <td>country</td>
            <td><?=form_input('country', set_value('country'));?></td>
            <td class="error"><?php echo form_error('country'); ?></td>
        </tr>
    <tr>
        <td><?=form_dropdown('Equipment',$options = array(
                                '1'   => '1',
                                '2'   => '2',
                                '3'   => '3',
                                '4'   => '4',
                                '5'   => '5',
                                '6'   => '6',
                                '7'   => '7',
                                '8'   => '8',
                                '9'   => '9',
                                '10' => '10'));?></td>
    </tr>

我将此表格添加到数据库中,它工作正常。

现在我想编辑这个页面。我正在做这样的事情:-

edit_store.php 页面在这里

<tr>
                <td>country</td>
                <td><?=form_input('country', set_value('country', $store['country']));?></td>
                <td class="error"><?php echo form_error('country'); ?></td>
</tr>

 <tr>
                <td>Equipment Rating</td>
                <td><?=
                                $selected_Equipment = $this->input->post('Equipment');
                                form_dropdown('Equipment'$selected_Equipment);?></td>
    // what i can do here, I am doing something wrong here??????????????????????????????????????????            
</tr>

我的问题是:我可以为来自数据库的选定下拉菜单做些什么?

如何编辑下拉选择的值?

那我能做什么???

4

2 回答 2

1
    <?php
    $selected_Equipment = '1';
    $options = array(
                     '1'   => '1',
                     '2'   => '2',
                     '3'   => '3',
                     '4'   => '4',
                     '5'   => '5',
                     '6'   => '6',
                     '7'   => '7',
                     '8'   => '8',
                     '9'   => '9',
                     '10' => '10');
   form_dropdown('Equipment',$options,$selected_Equipment);
   ?>

希望这可以帮助!

于 2012-08-31T17:28:01.903 回答
0

Kugutsumen 是对的,您对 form_dropdown 函数的语法有点错误。您可以在此处查看它并查看它需要的参数: http: //codeigniter.com/user_guide/helpers/form_helper.html

于 2012-08-31T18:09:56.620 回答