11 lines
323 B
PHP
11 lines
323 B
PHP
<?php
|
|
class M_dataresume extends CI_Model {
|
|
|
|
function index() {
|
|
$this->db->order_by('pr_date_resume', 'DESC');
|
|
$this->db->where('pr_user_pasien_id', $this->session->userdata('s_ID_User_rssapintar'));
|
|
$query = $this->db->get('proses_resume');
|
|
return $query->result();
|
|
}
|
|
}
|
|
?>
|