0

私はCodeigniterを初めて使用します。単純な顧客データベースを作成しようとしていますが、update_customerモデルをロードしようとすると、Httpエラー500が発生し続けます。モデルをコメントアウトするときに、モデルの原因に絞り込んだと確信しています。ページを呼び出すと、エラーなしでページがそれ自体にリダイレクトされます。私の間違いがあったアイデアはありますか?

そして、apacheエラーログでエラーを見つけることができないようです...

コントローラ:

function edit_customer($id){
    $data['success']=0;
    if($_POST){
        $data_customer=$_POST;
        $data_customer['active'] = 1;
        $this->customer->update_customer($id,$data);
        $data['success']=1;
    }
    $data['customer']=$this->customer->get_customer($id);

    $this->load->view('header');
    $this->load->view('edit_customer',$data);
    $this->load->view('footer');
}

モデル:

function get_customer($id){
    $this->db->select()->from('customers')->where(array('active'=>1, 'id'=>$id))->order_by('date_added', 'desc');
    $query=$this->db->get();
    return $query->first_row('array');
}

function update_customer($id, $data){
    $this->where('id', $id);
    $this->db->update('customers', $data);
}
4

1 に答える 1

1

whereステートメントに欠落しているadb->は次のようになります。

function update_customer($id, $data){
    $this->db->where('id', $id);
    $this->db->update('customers', $data);
}
于 2012-10-03T03:43:56.880 に答える