How do you get last insert id in codeigniter?
How do you get last insert id in codeigniter?
Share
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Aviance School is one of the largest web solutions platform in India for developers to learn and share their programming knowledge and build their careers.
you can use $this->db->insert_id();
public function insert_data($data)
{
$this->db->insert("table name",$data);
$lastID = $this->db->insert_id();
return $lastID;
}