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;
}

Leave a Reply

Your email address will not be published. Required fields are marked *.

*
*
You may use these <abbr title="HyperText Markup Language">HTML</abbr> tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <s> <strike> <strong>