如何只更新PHP Codeigniter中最后插入的记录?

时间:2015-08-11 10:30:09

标签: php mysql codeigniter

我正在尝试更新codeigniter中最后插入的记录。我有一个表经销商,我有名称,电话,国家代码,余额和密钥等字段。现在这个密钥是其他信息的组合,如他的姓名,电话和国家代码。所以我首先插入用户信息并保持关键字段NUll一旦完成我想更新记录并通过连接字段插入密钥。我已成功生成密钥(连接),但我的代码更新了表中的所有记录,而不想更新最后插入的记录。所以我可以填补关键字段,这个字段是空的。 以下是我的控制器代码:

public function edit ($id = NULL)
{
    // Fetch a user or set a new one
    if ($id) {
        $this->data['user'] = $this->reseller_m->get($id);
        count($this->data['user']) || $this->data['errors'][] = 'User could not be found';
    }
    else {
        $this->data['user'] = $this->reseller_m->get_new();
    }

    // Set up the form
    $rules = $this->reseller_m->rules_admin;
    $id || $rules['password']['rules'] .= '|required';
    $this->form_validation->set_rules($rules);

    // Process the form
    if ($this->form_validation->run() == TRUE) {

        $data = $this->reseller_m->array_from_post(array('sip_username','sip_password','key','allocation_block','name','email','password','phone','balance','user_num','address','country','created','modified','status'));

        $data['password'] = $this->reseller_m->hash($data['password']);

        $key=$this->reseller_m->save($data, $id);

        for($i=1; $i<=$data['user_num'];$i++)
        {
            $userdata=array('key'=>$key);
            // here users is taken name of user table with retailer_id is field
            $this->user_m->save($userdata,$id);
         }

         $values=array($this->input->post('name'),$this->input->post('country'),$this->input->post('name'));

         $key=implode('-',$values);


        $this->db->update('reseller' ,array('key'=>$key));
        redirect('admin/reseller');
    }

    // Load the view
    $this->data['subview'] = 'admin/reseller/edit';
    $this->load->view('admin/_layout_main', $this->data);
}

1 个答案:

答案 0 :(得分:1)

正在更新所有记录,因为您没有使用任何约束。

要获取最后插入记录的ID,可以使用

$last_id = $this->db->insert_id();

然后使用

进行更新
$this->db->where('<your_pk_field>',$last_id);
$this->db->update('reseller', array('key'=>$key));

希望这有帮助。