我正在使用 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>
我的问题是:我可以为来自数据库的选定下拉菜单做些什么?
如何编辑下拉选择的值?
那我能做什么???