Referring Mr./Mrs/Miss :
" . getTableFieldValue('patient_master', 'patient_name', 'id', $row['emp_id']) . " "; ?>
Age :
";
echo (date('Y') - date('Y', strtotime($dob)));
?>
Yrs With
Complaints of :
On examination, he/she has :
= getCommaSeperatedValuesForInClause("select examination_finding from examination_findings ", "id", $row['examination_remarks']); ?>
The investigations done show :
= getCommaSeperatedValuesForInClause("select ailment_name from ailment ", "ailment_id", $row['ailments_new']); ?>
My Clinical impression is :
= getCommaSeperatedValuesForInClause("select ailment_name from ailment ", "ailment_id", $row['ailments_new']); ?>
He/She is referred to you for your expert opinion and advise. Kindly examine the
patient and advise/do the needful. Please inform me about the progress of the
patient.
Thanking you,
Yours sincerely,
= $sign_row["patient_name"] ?>
(CMO.= $row_for_company['company_name'] ?>)
P.S :
He/She is allergic to
He/She is suffering from
for which he/she is taking
0) {
while ($row_prescription_master = mysqli_fetch_assoc($result_prescription_master)) {
echo getTableFieldValue('tbl_items', 'item_name', 'item_id', $row_prescription_master['medicine_name']) . " ,";
}
}
$OtherMedicationsql = "SELECT medication FROM other_medication where emp_id = '" . $row['emp_id'] . "' order by id desc ";
$OtherMedicationQuery = mysqli_query($conn, $OtherMedicationsql);
if (mysqli_num_rows($OtherMedicationQuery) > 0) {
$fetchOtherMedication = mysqli_fetch_assoc($OtherMedicationQuery);
echo strtoupper( $fetchOtherMedication['medication'] );
}
?>