您好我正在使用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));
}