带有form_helper输入的Codeigniter下拉表单是索引/键而不是选定的值

时间:2015-04-13 08:14:04

标签: php mysql codeigniter codeigniter-form-helper

我是codeigniter的新手并尝试使用表单助手制作下拉列表。我已经定期输入表单,但现在我想从我的数据库中检索选项以填充我的下拉列表。好像我有大部分工作(如果我输入一个常规文本字段,我可以进行更改),但当我尝试运行我的更新功能时,我得到一个数据库错误,因为由于某种原因,我得到了选择的索引/键,而不是我尝试用来更新数据库的实际值(我也尝试使用jquery动态影响另一个下拉列表,但还不是那里......)。

我的表单中与此问题相关的部分:

echo form_label('Stage');
echo form_dropdown('stage_name', $stage_options, $stage[0]->stage_name, 
'id=
stagesDrp"');

我的相关模型方法:

function get_stage_options($id){
  $this->db->select('stages.stage_name')->from('stages')-     
>join('prices', 'prices.id=stages.price_id')- 
>join('events','events.price_id=prices.id')->where('events.id', $id);
  $stage_options=$this->db->get();
  if($stage_options->num_rows()>0)
  {
    foreach($level_options->result() as $row)
    {
      $options[]=$row->stage_name;
    }
    return $options;
  }

 function update_stage($id){
  $stage=array(
    'stage_name'=>$this->input->post('stage_name')
  );

  $this->db->where('events.id', $id);
  $this->db->update('stages', $stage_name);

}

当我尝试提交更新表单时,我收到数据库错误,因为它试图根据选择的内容设置stage_name =索引值(即0,1,2),而不是等于实际的stage_name。

也许我错过了一个简单的步骤?我非常感谢你的帮助!

1 个答案:

答案 0 :(得分:1)

将名称设置为数组的索引。试试 -

foreach($level_options->result() as $row)
{
  $options[$row->stage_name] = $row->stage_name;
}