Backend Service

This commit is contained in:
2019-04-01 15:04:07 +00:00
parent 617d41139f
commit e6b002c62b
8 changed files with 65 additions and 4 deletions
@@ -46,7 +46,12 @@ $data["loc"] = $_SERVER["REMOTE_ADDR"];
}
public function patientView(){
echo $data['patient_id'] = trim($this->input->post('patientID'));
echo $data['patient_id'] = trim($this->input->post('patientID'));
$this->load->model('patient_model');
$out = $this->patient_model->LoadPatient(0, $data['patient_id']);
print_r( $out );
$this->renderProviderSecurePage('patient/thispatient', $data);
}