This is my code. I want to get location_name in alphabetical order and location_id and id want to relevant each location_name
in modal
function get_exam_locations_for_view() {
  $d = $this->db->get('exm_exam_location');
  if ($d) {
    return $d;
  }
}
in view
foreach ($ex_locations->result_array() as $row) {
  $loc_name = $row['location_name'];
  $loc_id = $row['location_id'];
  $loc_ai = $row['id'];
}
 
     
    