Backend Service

This commit is contained in:
2019-03-19 23:51:09 +00:00
parent facaaa4c98
commit 617d41139f
4 changed files with 296 additions and 22 deletions
@@ -45,6 +45,12 @@ $data["loc"] = $_SERVER["REMOTE_ADDR"];
$this->renderProviderSecurePage('patient/newpatient', $data);
}
public function patientView(){
echo $data['patient_id'] = trim($this->input->post('patientID'));
$this->renderProviderSecurePage('patient/thispatient', $data);
}
private function getPatientList(){
$mysql = "SELECT p.practice_id,p.id AS patient_id,p.member_id,p.long_id,m.firstname,m.lastname,m.phone,p.added "