0

我在 CI 控制器中有这段代码:

if ($this->form_validation->run() === FALSE)
        {
            $data['category'] = $this->categories_model->get_categories($id);
            $this->load->view("templates/admin_header", $data);
            $this->load->view("categories/edit", $data);
            $this->load->view("templates/admin_footer", $data); 
        }
        else
        {
            $array = array('id'=>$id, 'category_name' => $this->input->post('category_name'));

            $this->categories_model->update($array);
            $this->load->view("templates/admin_header");
            $this->load->view("categories/edit");
            $this->load->view("templates/admin_footer");
        }

在我看来,我有这个:

<input type="text" class="text" name="category_name" value="<?php echo set_value('category_name', $category['category_name']); ?>"/>

当我第一次加载视图时,它会从数据库中获取 category_name 值并将其显示在输入字段中。但是当我发布表单时,它会更新数据库,但是当视图在发布后加载时,它会显示这个错误:

严重性:通知消息:未定义变量:类别

它破坏了输入字段的html。

4

1 回答 1

1
if ($this->form_validation->run())
{
    $array = array('id'=>$id, 'category_name' => $this->input->post('category_name'));

    $this->categories_model->update($array);        
}

$data['category'] = $this->categories_model->get_categories($id);  

$this->load->view("templates/admin_header", $data);
$this->load->view("categories/edit");
$this->load->view("templates/admin_footer");
于 2013-05-04T16:28:28.683 回答