I want to display values of an array, but it only displays one value of the array rather than all values of the array.
Model:
function get_subject_position($exam_id , $class_id , $subject_id ) {
$this->db->where('exam_id' , $exam_id);
$this->db->where('class_id' , $class_id);
$this->db->where('subject_id' , $subject_id);
$this->db->select('mark_obtained');
$this->db->order_by('mark_obtained DESC');
$subject_position = $this->db->get('mark')->result_array();
foreach($subject_position as $row) {
return $row;
}
}
View:
$subject_pos = $this->crud_model->get_subject_position($row2['exam_id'], $class_id, $row3['subject_id']);
<td style="text-align: center;"><?php echo $subject_pos['mark_obtained'];?></td>