Get Max Id of A Table
// Function for get max id
public function get_max_id($table) {
$this->db->select_max('id');
$query = $this->db->get($table);
$res = $query->row();
return $res->id;
}
// Function for get max id
public function get_max_id($table) {
$this->db->select_max('id');
$query = $this->db->get($table);
$res = $query->row();
return $res->id;
}