无法在CodeIgniter中更新和删除?

时间:2018-05-02 18:04:34

标签: php mysql codeigniter updates

我是CodeIgniter的新手,只是在youtube上观看教程并按照步骤操作。 我无法编辑或删除数据库的记录。我可以插入或获取记录,但更新和删除函数总是返回错误。这是我的代码

控制器:

function __construct()
{
    parent::__construct();
    $this->load->model('Danhmuc_model');
}

function xoadm()
{
   $id = $this->uri->segment(5);
   $this->Danhmuc_model->delete($id);
   $this->session->set_flashdata('mess',' Đã xóa thành công');
   redirect(admin_url('danhmuc/xemdm'));
}

function suadm()
{
    $data = array();
    $id = $this->uri->segment(5);
    $row = $this->Danhmuc_model->get_info($id);
    if($this->input->post())
    {
        $this->form_validation->set_rules('ten_dm',"Tên danh mục",'required');
        if($this->form_validation->run())
        {
            $tendm = $this->input->post('ten_dm');
            $input = array('ten_dm'=>$tendm);
            $this->Danhmuc_model->update($id,$input);
            $this->session->set_flashdata('mess',' Đã sửa thành công');
        }
    }
    $data['row'] = $row;    
    $data['temp'] = 'admin/danhmuc/suadm';
    $this->load->view('admin/index',$data);
}

型号:

function update($id, $data)
{
    if (!$id)
    {
        return FALSE;
    }

    $where = array();
    $where[$this->key] = $id;
    $this->update_rule($where, $data);

    return TRUE;
}
/**
 * Xoa row tu id
 * $id : gia tri cua khoa chinh
 */
function delete($id)
{
    if (!$id)
    {
        return FALSE;
    }
    //neu la so
    if(is_numeric($id))
    {
        $where = array($this->key => $id);
    }else
    {
        //xoa nhieu row
        //$id = 1,2,3...
        $where = $this->key . " IN (".$id.") ";
    }
    $this->del_rule($where);

    return TRUE;
}

查看: 编辑视图:

<td>
    <input name="title" class="form-control" type="text" value="<?php echo $row['ten_dm'] ?>">
</td>

如果我使用此value="<?php echo $row['ten_dm'] ?>",则文本框不会显示类别的标题(我正在插入和编辑类别) https://imgur.com/lW7FeDA https://imgur.com/Z6TjnhL

但如果我使用此value="<?php echo $row->ten_dm ?>",则会显示此消息错误

遇到PHP错误 严重性:注意

消息:尝试获取非对象的属性

文件名:danhmuc / suadm.php

行号:13

我无法理解错误在哪里,请帮帮我。提前谢谢。

0 个答案:

没有答案