Backend Service

This commit is contained in:
2019-03-16 02:48:45 +00:00
parent bccad002ff
commit bbaca4324e
3 changed files with 27 additions and 8 deletions
@@ -0,0 +1,18 @@
<?php
class Dash_model extends CI_Model {
function __construct() {
}
public function getPatientCount(){
$mysql = "SELECT p.practice_id,p.id AS patient_id,p.member_id,p.long_id,m.firstname,m.lastname,m.phone,p.added "
." FROM patients p LEFT JOIN members m ON m.id=p.member_id ORDER BY p.added DESC";
$query = $this->db->query($mysql);
$num = $query->num_rows();
$data["patient_list"] = $query->result();
return $data;
}
}