I’ve tried the _data_seek() option and I’m still not getting an offset.
I’ve checked and the function is still not officially set to private.
I’m hoping my syntax is just off… any ideas?
public function get_data($offset, $per_page)
{
$result = $this->db->get('my_table_data', $offset, $per_page);
$result->_data_seek($offset);
echo $this->db->last_query();
return $result->result_array($offset);
}