This commit is contained in:
Olusesan Ameye
2021-01-31 17:36:50 -05:00
parent a385414015
commit 87615b54a2
3 changed files with 77 additions and 0 deletions
@@ -0,0 +1,21 @@
<?php
//class Dash_model extends CI_Model {
class Dash_model extends ADMIN_Controller {
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;
}
*
*/
}