Get Max Id of A Table in Codeigniter : Function / Method
<?php
// 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;
}
?>