I am, using the Codeigniter pagination library,
I am wondering how I can grab the number of the first and last items displayed using the pagination class?
So
itachi's solution works great except you need to handle the case where the last page has less than $per_page elements.
if ($result_end > $total) { $result_end = $total; }