重复的条目会自动插入

时间:2016-04-21 07:31:42

标签: php codeigniter duplicates

您好我正在使用php codeigniter。我的问题是,当我在mysql表中插入数据时,它工作正常,但很少添加(相同数据)多次。我不想这样并没有给它任何代码 我的插入代码在

下面
$job = array(
    'emp_id'=>$this->input->post('employee'),
    'invoice'=>$this->input->post('job'),
    'amount'=>$this->input->post('amount'),
    'assigned_time'=>date('Y-m-d H:i:s')
);
$this->db->where('id',$this->input->post('employee'));
$this->db->where('status',1);
$query = $this->db->get('employee');
if($query->num_rows()==0)
{
    if($this->db->insert('job',$job))
    {
        $this->session->set_flashdata('message','Success');
    }
    $this->db->where('id',$this->input->post('employee'));
    $this->db->update('employee',array('status'=>1));
}

0 个答案:

没有答案