function getAll($table) { $rows = $this->db->get($table)->result_array(); if(count($rows)>0){ foreach($rows as $row){ $data[]=$row; } return $data; } }