当前位置: 首页>>代码示例>>PHP>>正文


PHP database::getPatientRecord_lastName方法代码示例

本文整理汇总了PHP中database::getPatientRecord_lastName方法的典型用法代码示例。如果您正苦于以下问题:PHP database::getPatientRecord_lastName方法的具体用法?PHP database::getPatientRecord_lastName怎么用?PHP database::getPatientRecord_lastName使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在database的用法示例。


在下文中一共展示了database::getPatientRecord_lastName方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: database

<?php

include "../../../myDatabase.php";
$registrationNo = $_GET['registrationNo'];
$ro = new database();
$ro->getPatientProfile($registrationNo);
$ro->coconutFormStart("get", "registrationCensusDelete1.php");
$ro->coconutHidden("registrationNo", $registrationNo);
echo "<Br><Br><br><br><br><Br>";
$ro->coconutBoxStart_red("600", "120");
echo "<br>\t";
echo "<font size=3 color=red>You are about to delete the record of " . $ro->getPatientRecord_lastName() . ", " . $ro->getPatientRecord_firstName() . " <br>with a registration No#: " . $registrationNo . " and register by " . $ro->getRegistrationDetails_registeredBy() . "</font>";
echo "<br><br>";
$ro->coconutButton("Delete");
$ro->coconutBoxStop();
$ro->coconutFormStop();
开发者ID:rickyx12,项目名称:mendero,代码行数:16,代码来源:registrationCensusDelete.php

示例2: date

	a.document.write(document.getElementById(printData).innerHTML.replace(/<a\/?[^>]+>/gi, ''));
	a.document.close();
	a.focus();
	a.print();
	a.close();
}
</script>
<a href='#' onClick="printF('printData')" style="text-decoration:none;"><?php 
    echo $ro->coconutImages("printer.jpeg");
    ?>
 <font color=red>Print</font></a><Br><Br>
<?php 
    echo "<div id='printData'>";
    echo "Reg#:&nbsp;" . $registrationNo . "&nbsp;&nbsp;&nbsp;&nbsp;Batch#:&nbsp;" . $dispensedNo;
    echo "<br>";
    echo "Name:&nbsp;" . $ro->getPatientRecord_lastName() . ", " . $ro->getPatientRecord_firstName();
    echo "<br>";
    echo "PHIC:" . $ro->getPatientRecord_phic() . " + " . $ro->getRegistrationDetails_company();
    echo "<br>";
    echo "Date" . date("M d, Y") . " @ " . $ro->getSynapseTime();
    echo "<Br>";
    echo "Room:" . $ro->getRegistrationDetails_room();
    echo "<br>";
    echo "Pharmacy:" . $username;
    echo "<br>";
    echo "Doctor:" . $ro->getAttendingDoc($registrationNo, "Attending");
    echo "<table border=1 cellpadding=1 cellspacing=1>";
    echo "<tr>";
    echo "<th>Particulars</th>";
    echo "<th>QTY</th>";
    echo "</tr>";
开发者ID:rickyx12,项目名称:protacio,代码行数:31,代码来源:updateDepartmentStatus.php

示例3:

    <tr>
      <td width="240"><font size=5>Reg No.</font> </td>
      <td width="318"><font size=5><?php 
echo $registrationNo;
?>
</font></td>
      <td width="205"><font size=5>Date Admitted</font> </td>
      <td width="118"><?php 
echo $ro->getRegistrationDetails_dateRegistered();
?>
</td>
    </tr>
    <tr>
      <td><font size=5>Patient Name</font> </td>
      <td><font size=5><?php 
echo $ro->getPatientRecord_lastName() . ", " . $ro->getPatientRecord_firstName() . " " . $ro->getPatientRecord_middleName();
?>
</font></td>
      <td><font size=5>Time Admitted</font> </td>
      <td><font size=5><?php 
echo $ro->getRegistrationDetails_timeRegistered();
?>
</font></td>
      <td width="9">&nbsp;</td>
    </tr>
    <tr>
      <td><font size=5>Age</font></td>
      <td><font size=5> <?php 
echo $ro->getPatientRecord_age();
?>
</font></td>
开发者ID:rickyx12,项目名称:protacio,代码行数:31,代码来源:clincase.php

示例4: database

<?php

include "../../../myDatabase.php";
$labTest = $_GET['labTest'];
$itemNo = $_GET['itemNo'];
$registrationNo = $_GET['registrationNo'];
$branch = $_GET['branch'];
$description = $_GET['description'];
$logNo = $_GET['logNo'];
$medTech = $_GET['medTech'];
$pathologist = $_GET['pathologist'];
$ro = new database();
$ro->coconutDesign();
$ro->getPatientProfile($registrationNo);
echo "<br><br>&nbsp;&nbsp;<font size=3>Name:</font>&nbsp;<input type=text name='patientName' style='border-bottom:1px solid #000;\nborder-top:0px solid #000;\nborder-left:0px solid #000;\nborder-right:0px solid #000; \nheight: 30px; width: 320px;\n ' value='" . $ro->getPatientRecord_lastName() . ", " . $ro->getPatientRecord_firstName() . "'>";
echo "<Br>";
echo "&nbsp;&nbsp;<font size=4>Log No:</font>&nbsp;";
echo "&nbsp;<input type=text name='logNo' style='border-bottom:1px solid #000;\nborder-top:0px solid #000;\nborder-left:0px solid #000;\nborder-right:0px solid #000; \nheight: 30px; width: 320px;' value='{$logNo}'>";
echo "<Br>";
echo "&nbsp;&nbsp;<font size=4>Pathologist:</font>&nbsp;";
echo "&nbsp;<input type=text name='pathologist' style='border-bottom:1px solid #000;\nborder-top:0px solid #000;\nborder-left:0px solid #000;\nborder-right:0px solid #000; \nheight: 30px; width: 320px;' value='{$pathologist}'>";
echo "<Br>";
echo "&nbsp;&nbsp;<font size=4>Med Tech:</font>&nbsp;";
echo "&nbsp;<input type=text name='medTech' style='border-bottom:1px solid #000;\nborder-top:0px solid #000;\nborder-left:0px solid #000;\nborder-right:0px solid #000; \nheight: 30px; width: 320px;' value='{$medTech}'>";
$ro->getLabHeader($labTest, $itemNo, $registrationNo, $branch, $logNo, $medTech, $pathologist);
开发者ID:rickyx12,项目名称:protacio,代码行数:25,代码来源:labTest.php

示例5: database

<?php

include "../../../myDatabase.php";
session_start();
$registrationNo = $_GET['registrationNo'];
$ro = new database();
$ro->getPatientProfile($registrationNo);
$ro->coconutDesign();
$ro->coconutHeading("User Verification", "COCONUT/NURSING/initializeNursing.php");
unset($_SESSION['registrationNo']);
session_destroy();
echo "<Br>";
echo "<center>";
$ro->coconutImages("lock2.jpeg");
echo "&nbsp;<font size=2 color=red>Pls Login first to access the Profile of " . $ro->getPatientRecord_lastName() . ", " . $ro->getPatientRecord_firstName() . " in " . $ro->getRegistrationDetails_room() . " </font>";
echo "<br>";
$ro->coconutFormStart("post", "verifyUser1.php");
$ro->coconutHidden("registrationNo", $registrationNo);
$ro->coconutBoxStart("500", "150");
echo "<br><table border=0>";
echo "<tr>";
echo "<Td>" . $ro->coconutText("Username") . "</tD>";
echo "<td>";
$ro->coconutTextBox("username", "");
echo "</td>";
echo "</tr>";
echo "<tr>";
echo "<td>" . $ro->coconutText("Password") . "</td>";
echo "<td>";
echo "<input type=password name='password' class='txtBox' value=''>";
echo "</td>";
开发者ID:rickyx12,项目名称:protacio,代码行数:31,代码来源:verifyUser.php

示例6: database

//$module = $_SESSION['module'];
$_SESSION['username'] = $username;
//$_SESSION['registrationNo'] = $registrationNo;
$ro = new database();
$ro->getPatientProfile($_GET['registrationNo']);
if (!isset($_SESSION['username']) || !isset($_SESSION['registrationNo'])) {
    header("Location:/COCONUT/patientProfile/unknownUser/verifyUser.php?registrationNo={$_GET['registrationNo']} ");
    die;
}
if ($_GET['username'] == "") {
    $ro->gotoPage("http://" . $ro->getMyUrl() . "/COCONUT/patientProfile/unknownUser/verifyUser.php?registrationNo={$registrationNo}");
}
?>
<title><?php 
$ro->getPatientProfile($registrationNo);
echo $ro->getPatientRecord_lastName() . ",&nbsp;" . $ro->getPatientRecord_firstName();
?>
</title>
<link rel="stylesheet" type="text/css" href="http://<?php 
echo $ro->getMyUrl();
?>
/COCONUT/flow/rickyCSS1.css" />
<script type="text/javascript" src="http://<?php 
echo $ro->getMyUrl();
?>
/jquery.js"></script>
<script type="text/javascript" src="http://<?php 
echo $ro->getMyUrl();
?>
/jquery.autocomplete.js"></script>
<link rel="stylesheet" type="text/css" href="http://<?php 
开发者ID:rickyx12,项目名称:protacio,代码行数:31,代码来源:patientInterface1_walkIn.php

示例7: date

	a.document.close();
	a.focus();
	a.print();
	a.close();
}
</script>
<a href='#' onClick="printF('printData')" style="text-decoration:none;"><?php 
    echo $ro->coconutImages("printer.jpeg");
    ?>
 <font color=red>Print</font></a><Br><Br>
<?php 
    echo "<div id='printData'>";
    echo "\n<style type='text/css'>\n<!--\n.style1 {font-family: Arial;font-size: 16px;color: #000000;font-weight: bold;}\n.style2 {font-family: 'Times New Roman';font-size: 16px;color: #FF0000;font-weight: bold;}\n.style3 {text-decoration: none;font-family: Arial;font-size: 12px;color: #000000;font-weight: bold;}\n.style4 {font-family: Arial;font-size: 12px;color: #000000;font-weight: bold;}\n.style5 {font-family: Arial;font-size: 14px;color: #000000;}\n.style6 {font-family: Arial;font-size: 12px;color: #FFFFFF;}\n.style7 {font-family: Arial;font-size: 11px;color: #000000;}\n.style8 {font-family: Arial;font-size: 12px;color: #FFFFFF;font-weight: bold;}\n-->\n</style>\n";
    echo "<span class='style4'>Reg#:&nbsp;</span><span class='style5'>" . $registrationNo . "</span><span class='style4'>&nbsp;&nbsp;&nbsp;&nbsp;Batch#:&nbsp;</span><span class='style5'>" . $dispensedNo . "</span>";
    echo "<br>";
    echo "<span class='style4'>Name:&nbsp;</span><span class='style5'>" . $ro->getPatientRecord_lastName() . ", " . $ro->getPatientRecord_firstName() . "</span>";
    echo "<br>";
    echo "<span class='style4'>PHIC:&nbsp;</span><span class='style5'>" . $ro->getPatientRecord_phic() . " + " . $ro->getRegistrationDetails_company() . "</span>";
    echo "<br>";
    echo "<span class='style4'>Date:&nbsp;</span><span class='style5'>" . date("M d, Y") . " @ " . $ro->getSynapseTime() . "</span>";
    echo "<Br>";
    echo "<span class='style4'>Room:&nbsp;</span><span class='style5'>" . $ro->getRegistrationDetails_room() . "</span>";
    echo "<br>";
    echo "<span class='style4'>Pharmacy:&nbsp;</span><span class='style5'>" . $username . "</span>";
    echo "<br>";
    echo "<span class='style4'>Doctor:&nbsp;</span><span class='style5'>" . $ro->getAttendingDoc($registrationNo, "Attending") . "</span>";
    echo "<br /><br />";
    echo "<table border=1 bordercolor=black cellpadding=0 cellspacing=0>";
    echo "<tr>";
    echo "<td class='style4'>&nbsp;Particulars&nbsp;</td>";
    echo "<td class='style4'>&nbsp;QTY&nbsp;</td>";
开发者ID:rickyx12,项目名称:mendero,代码行数:31,代码来源:updateDepartmentStatus.php

示例8: database

<?php

include "../../myDatabase.php";
$registrationNo = $_GET['registrationNo'];
$ro = new database();
$ro->getPatientProfile($registrationNo);
echo "<br>";
echo "<center><font size=4><b>" . $ro->getReportInformation("hmoSOA_name") . "</b></font>";
echo "<br><font size=2>" . $ro->getReportInformation("hmoSOA_address") . "</font>";
echo "<hr>";
echo "<table border=0>";
echo "<tr>";
echo "<td><font size=3>Reg#:</font></td><td><font size=3>" . $registrationNo . "</font></td>\n<td width='30%'>&nbsp;</td>\n<td><font size=3>Time Admitted:</font></td>\n<td><font size=2><input type=text style='border:0px solid #000' value='" . $ro->getRegistrationDetails_timeRegistered() . "' readonly></font></tD>\n";
echo "</tr>";
echo "<tr>";
echo "<td><font size=3>Patient:</font></tD><td><font size=3>" . $ro->getPatientRecord_lastName() . ", " . $ro->getPatientRecord_firstName() . " " . $ro->getPatientRecord_middleName() . "</font></tD>\n<td width='30%'>&nbsp;</td>\n<td><font size=3>Date Admitted:</font></td>\n<td><font size=3>" . $ro->getRegistrationDetails_dateRegistered() . "</font></tD>\n";
echo "</tR>";
echo "<tr>";
echo "<td><font size=3>Age:</font></td><td><font size=3>" . $ro->getPatientRecord_age() . "</font></tD>\n<td width='30%'>&nbsp;</td>\n<td><font size=3>Sex:</font></td><td><font size=3>" . $ro->getPatientRecord_gender() . "</font></tD>\n";
echo "</tr>";
echo "<tr>";
echo "<td><font size=3>Company:</font></tD><td><font size=3>" . $ro->getRegistrationDetails_company() . "</font></tD>\n<td width='30%'>&nbsp;</td>\n<td><font size=3>PhilHealth:</font></td><td><font size=3>" . $ro->getPatientRecord_phicType() . "</font></tD>\n";
echo "</tr>";
echo "<tr>";
echo "<td><font size=3>Height:</font></tD><td><font size=3>" . $ro->getRegistrationDetails_height() . "</font></tD>\n<td width='30%'>&nbsp;</td>\n<td><font size=3>Weight:</font></td><td><font size=3>" . $ro->getRegistrationDetails_weight() . "</font></tD>\n";
echo "</tr>";
echo "<tr>";
echo "<td><font size=3>Temperature:</font></tD><td><font size=3>" . $ro->getRegistrationDetails_temperature() . "</font></tD>\n<td width='30%'>&nbsp;</td>\n<td><font size=3>Blood Pressure:</font></td><tD><font size=3>" . $ro->getRegistrationDetails_bloodPressure() . "</font></tD>\n";
echo "</tr>";
echo "<tr>";
echo "<td><font size=3>Diagnosis:</font></tD><td><font size=3>" . $ro->getRegistrationDetails_IxDx() . "</font></tD>\n<td width='30%'>&nbsp;</td>\n<td><font size=3>Att. Physician:</font></td>\n<td>" . $ro->getAttendingDoc($registrationNo, "Attending") . "</tD>\n";
开发者ID:rickyx12,项目名称:protacio,代码行数:31,代码来源:admissionSlip_feb3.php

示例9: database

<?php

include "../../myDatabase.php";
$registrationNo = $_GET['registrationNo'];
$ro = new database();
$ro->coconutDesign();
$ro->getPatientProfile($registrationNo);
echo "<br><font color=red>" . $ro->getPatientRecord_lastName() . ", " . $ro->getPatientRecord_firstName() . "</font>";
echo "<Br>";
echo "<font color=black>{$registrationNo}</font>";
echo "<Br><br><br>";
$ro->coconutFormStart("get", "rBanny_discount.php");
$ro->coconutHidden("registrationNo", $registrationNo);
$ro->coconutBoxStart("500", "90");
echo "<Br>";
echo "<table>";
echo "<tr>";
echo "<td>Discount:&nbsp;</td>";
echo "<td>";
$ro->coconutTextBox("discount", "");
echo "</td>";
echo "</tr>";
echo "</table>";
echo "<br>";
$ro->coconutButton("Proceed");
$ro->coconutBoxStop();
$ro->coconutFormStop();
开发者ID:rickyx12,项目名称:protacio,代码行数:27,代码来源:discountManualInput.php

示例10: date

        $timeCharge = $afetch['timeCharge'];
        $chargeBy = $afetch['chargeBy'];
    }
}
$birthDatefmt = date("m/d/Y", strtotime($ro->getPatientRecord_birthDate()));
$birthDate = explode("/", $birthDatefmt);
$age = date("md", date("U", mktime(0, 0, 0, $birthDate[0], $birthDate[1], $birthDate[2]))) > date("md") ? date("Y") - $birthDate[2] - 1 : date("Y") - $birthDate[2];
if ($ro->getRegistrationDetails_room() == "") {
    $widthroom = "150";
} else {
    $widthroom = "auto";
}
if ($ro->getRegistrationDetails_company() == "") {
    $widthcom = "150";
} else {
    $widthcom = "auto";
}
echo "\n<div align='left'>\n  <table width='100%' border='0' cellpadding='0' cellspacing='0'>\n    <tr>\n      <td><table width='100%' border='0' cellpadding='0' cellspacing='0'>\n        <tr>\n          <td width='50%'><div align='left'><table border='0' cellspacing='0' cellpadding='0'>\n            <tr>\n              <td width='auto'><div align='left' class='couriernew13black'>Patient ID</div></td>\n              <td width='10'><div align='center' class='couriernew13black'>:</div></td>\n              <td width='auto' class='table1Bottom'><div align='left' class='couriernew15blackbold'>" . $ro->getRegistrationDetails_patientNo() . "</div></td>\n            </tr>\n          </table></div></td>\n          <td width='50%'><div align='right'><table border='0' cellspacing='0' cellpadding='0'>\n            <tr>\n              <td width='auto'><div align='left' class='couriernew13black'>Date-Time Printed</div></td>\n              <td width='10'><div align='center' class='couriernew13black'>:</div></td>\n              <td width='auto' class='table1Bottom'><div align='left' class='couriernew15blackbold'>" . date("m/d/Y H:i") . "</div></td>\n            </tr>\n          </table></div></td>\n        </tr>\n      </table></td>\n    </tr>\n    <tr>\n      <td height='6'></td>\n    </tr>\n    <tr>\n      <td><table width='100%' border='0' cellpadding='0' cellspacing='0'>\n        <tr>\n          <td width='auto'><div align='left'><table border='0' cellspacing='0' cellpadding='0'>\n            <tr>\n              <td width='auto'><div align='left' class='couriernew13black'>Patient Name</div></td>\n              <td width='10'><div align='center' class='couriernew13black'>:</div></td>\n              <td width='auto' class='table1Bottom'><div align='left' class='couriernew15blackbold'>" . $ro->getPatientRecord_lastName() . ", " . $ro->getPatientRecord_firstName() . " " . $ro->getPatientRecord_middleName() . "</div></td>\n            </tr>\n          </table></div></td>\n          <td width='auto'><div align='right'><table border='0' cellspacing='0' cellpadding='0'>\n            <tr>\n              <td width='auto'><div align='left' class='couriernew13black'>Date-Time Requested</div></td>\n              <td width='10'><div align='center' class='couriernew13black'>:</div></td>\n              <td width='auto' class='table1Bottom'><div align='left' class='couriernew15blackbold'>" . date("m/d/Y", strtotime($dateCharge)) . " " . date("H:i", strtotime($timeCharge)) . "</div></td>\n            </tr>\n          </table></div></td>\n        </tr>\n      </table></td>\n    </tr>\n    <tr>\n      <td height='6'></td>\n    </tr>\n    <tr>\n      <td><table width='100%' border='0' cellpadding='0' cellspacing='0'>\n        <tr>\n          <td width='auto'><div align='left'><table border='0' cellspacing='0' cellpadding='0'>\n            <tr>\n              <td width='auto'><div align='left' class='couriernew13black'>Date Of Birth</div></td>\n              <td width='10'><div align='center' class='couriernew13black'>:</div></td>\n              <td width='auto' class='table1Bottom'><div align='left' class='couriernew15blackbold'>" . date("M d, Y", strtotime($ro->getPatientRecord_birthDate())) . "</div></td>\n            </tr>\n          </table></div></td>\n          <td width='auto'><div align='right'><table border='0' cellspacing='0' cellpadding='0'>\n            <tr>\n              <td width='auto'><div align='left' class='couriernew13black'>Requested By</div></td>\n              <td width='10'><div align='center' class='couriernew13black'>:</div></td>\n              <td width='150' class='table1Bottom'><div align='left' class='couriernew15blackbold'>{$chargeBy}</div></td>\n            </tr>\n          </table></div></td>\n        </tr>\n      </table></td>\n    </tr>\n    <tr>\n      <td height='6'></td>\n    </tr>\n    <tr>\n      <td><table width='100%' border='0' cellpadding='0' cellspacing='0'>\n        <tr>\n          <td width='auto'><div align='left'><table border='0' cellspacing='0' cellpadding='0'>\n            <tr>\n              <td width='auto'><div align='left' class='couriernew13black'>Age</div></td>\n              <td width='10'><div align='center' class='couriernew13black'>:</div></td>\n              <td width='30' class='table1Bottom'><div align='left' class='couriernew15blackbold'>{$age}</div></td>\n              <td width='10'></td>\n              <td width='auto'><div align='left' class='couriernew13black'>Gender</div></td>\n              <td width='10'><div align='center' class='couriernew13black'>:</div></td>\n              <td width='80' class='table1Bottom'><div align='left' class='couriernew15blackbold'>" . strtoupper($ro->getPatientRecord_Gender()) . "</div></td>\n            </tr>\n          </table></div></td>\n          <td width='auto'><div align='right'><table border='0' cellspacing='0' cellpadding='0'>\n            <tr>\n              <td width='auto'><div align='left' class='couriernew13black'>Physician</div></td>\n              <td width='10'><div align='center' class='couriernew13black'>:</div></td>\n              <td width='auto' class='table1Bottom'><div align='left' class='couriernew15blackbold'>" . $ro->getAttendingDoc($registrationNo, "ATTENDING") . "</div></td>\n            </tr>\n          </table></div></td>\n        </tr>\n      </table></td>\n    </tr>\n    <tr>\n      <td height='6'></td>\n    </tr>\n    <tr>\n      <td><table width='100%' border='0' cellpadding='0' cellspacing='0'>\n        <tr>\n          <td width='auto'><div align='left'><table border='0' cellspacing='0' cellpadding='0'>\n            <tr>\n              <td width='auto'><div align='left' class='couriernew13black'>Room</div></td>\n              <td width='10'><div align='center' class='couriernew13black'>:</div></td>\n              <td width='{$widthroom}' class='table1Bottom'><div align='left' class='couriernew15blackbold'>" . $ro->getRegistrationDetails_room() . "</div></td>\n            </tr>\n          </table></div></td>\n          <td width='auto'><div align='right'><table border='0' cellspacing='0' cellpadding='0'>\n            <tr>\n              <td width='auto'><div align='left' class='couriernew13black'>Company</div></td>\n              <td width='10'><div align='center' class='couriernew13black'>:</div></td>\n              <td width='{$widthcom}' class='table1Bottom'><div align='left' class='couriernew15blackbold'>" . $ro->getRegistrationDetails_company() . "</div></td>\n            </tr>\n          </table></div></td>\n        </tr>\n      </table></td>\n    </tr>\n    <tr>\n      <td height='20'></td>\n    </tr>\n    <tr>\n      <td><div align='left' class='couriernew15black'>REQUEST/S</div></td>\n    </tr>\n    <tr>\n      <td height='10'></td>\n    </tr>\n    <tr>\n      <td><table width='100%' border='0' cellpadding='0' cellspacing='0'>\n        <tr>\n          <td width='auto'><div align='left' class='couriernew12black'>DESCRIPTION</div></td>\n        </tr>\n";
$asql = mysql_query("SELECT description, timeCharge, remarks, chargeBy, status FROM patientCharges WHERE registrationNo = '{$registrationNo}' AND departmentStatus = '' AND title = 'LABORATORY' AND status NOT LIKE 'DELETED_%%%%%%' AND dateCharge='{$dateCharge}' ");
while ($afetch = mysql_fetch_array($asql)) {
    echo "\n        <tr>\n          <td><div align='left' class='couriernew16blackbold'>" . $afetch['description'] . "</div></td>\n        </tr>\n";
    if ($afetch['remarks'] != "") {
        echo "\n        <tr>\n          <td valign='top'><div align='left' class='couriernew12black'>(" . $afetch['remarks'] . ")</div></td>\n        </tr>\n";
    }
}
echo "\n      </table></td>\n    </tr>\n  </table></td>\n</div>\n";
?>

</body>
</html>
开发者ID:rickyx12,项目名称:mendero,代码行数:30,代码来源:labFormPrint2.php

示例11: database

<?php

include "../../../myDatabase2.php";
$registrationNo = $_POST['registrationNo'];
$itemNo = $_POST['itemNo'];
$chargesCode = $_POST['chargesCode'];
$username = $_POST['username'];
$date = $_POST['date'];
$result = $_POST['result'];
$remarks = $_POST['remarks'];
$morphology = $_POST['morphology'];
$ro = new database();
$ro->getPatientProfile($registrationNo);
$ro->coconutDesign();
echo "<br><br><br>";
echo "<center><font color=red size=2>To Add the Result of [" . strtoupper($ro->getPatientRecord_lastName() . " " . $ro->getPatientRecord_firstName()) . "] enter your username and password</font></center>";
$ro->coconutFormStart("post", "logBeforeResult1.php");
$ro->coconutHidden("registrationNo", $registrationNo);
$ro->coconutHidden("itemNo", $itemNo);
$ro->coconutHidden("chargesCode", $chargesCode);
$ro->coconutHidden("username", $username);
$ro->coconutHidden("date", $date);
$ro->coconutHidden("result", $result);
$ro->coconutHidden("remarks", $remarks);
$ro->coconutHidden("morphology", $morphology);
$ro->coconutBoxStart("500", "160");
echo "<br>";
echo "<table border=0>";
echo "<tr>";
echo "<Td>Username&nbsp;</td>";
echo "<td>";
开发者ID:rickyx12,项目名称:mendero,代码行数:31,代码来源:logBeforeResult_jan-29-2015.php

示例12: day

if ($ro->getTotal("phic", "PROFESSIONAL FEE", $registrationNo) > 0) {
    $pf_phic += $ro->getPatient_phic();
} else {
}
if ($ro->getTotal("company", "PROFESSIONAL FEE", $registrationNo) > 0) {
    $pf_company += $ro->getPatient_company();
} else {
}
if ($ro->getTotal("cashUnpaid", "PROFESSIONAL FEE", $registrationNo) > 0) {
    $pf_cash += $ro->getPatient_cashUnpaid();
} else {
}
/*****************************************************/
/************* DISCOUNT ******************************/
$patientDiscount = 0;
if ($ro->getRegistrationDetails_discount() != "") {
    $patientDiscount = $ro->getRegistrationDetails_discount();
} else {
    $patientDiscount = "0.00";
}
/*****************************************************/
/***************** PAYMENT **************************/
$ro->getPaymentHistory_showUp_returnPaid_setter($registrationNo);
/****************************************************/
$gross = $hospitalBill_cash - $ro->getPaymentHistory_showUp_returnPaid();
$grandTotal = $gross - $ro->getRegistrationDetails_discount() + $pf_cash;
$content = "\n<div align='center' style='border:0px solid #000000; width:700px; height:auto;  border-color:black black black black;' >\n<font size=5><b>" . $ro->getReportInformation("hmoSOA_name") . "</b></font>\n<br><font size=2>" . $ro->getReportInformation("hmoSOA_address") . "</font>\n<br><br>\n</div>\n<table >\n<tr>\n<td><b>" . $ro->coconutText("Name") . ":</b>&nbsp;</td><td>&nbsp;" . $ro->getPatientRecord_lastName() . ", " . $ro->getPatientRecord_firstName() . "</td>\n<td>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</td><td>" . $ro->coconutText("Reg#") . "</td><td>&nbsp;{$registrationNo}</td>\n</tr>\n\n<tr>\n<Td><b>" . $ro->coconutText("PHIC") . ":</b>&nbsp;</td><td>&nbsp;" . $ro->getPatientRecord_phic() . "</td>\n<td>&nbsp;</td>\n<td><b>CaseType:</b></td><TD>" . $ro->getRegistrationDetails_caseType() . "</tD>\n</tr>\n\n<tr>\n<Td><b>" . $ro->coconutText("Company") . ":</b>&nbsp;</td><td>&nbsp;" . $ro->getRegistrationDetails_company() . "</td>\n<td>&nbsp;</tD>\n<Td><b>" . $ro->coconutText("Fx Diagnosis:") . ":</b>&nbsp;</td><td>&nbsp;" . $ro->getRegistrationDetails_finalDiagnosis() . "</td>\n</tr>\n\n<tr>\n<Td><b>" . $ro->coconutText("Admitted") . ":</b>&nbsp;</td><td>&nbsp;" . $ro->getRegistrationDetails_dateRegistered() . "</td>\n<td>&nbsp;</td>\n<Td><b>" . $ro->coconutText("Discharged") . ":</b>&nbsp;</td><td>&nbsp;" . $ro->getRegistrationDetails_dateUnregistered() . "</td>\n</tr>\n\n<tr>\n<Td><b>" . $ro->coconutText("Age") . ":</b></tD><td>&nbsp;" . $ro->getPatientRecord_age() . "</tD>\n<tD>&nbsp;</tD>\n<Td><b>" . $ro->coconutText("Room:") . "</b></tD><td>" . $ro->getRegistrationDetails_room() . "</tD>\n</tr>\n\n<tr>\n<td><b>" . $ro->coconutText("Att.Doctor") . ":</b></tD><td>&nbsp;<font size=2>" . $ro->getAttendingDoc($registrationNo, "Attending") . "</font></td>\n<td></td>\n<td><b>" . $ro->coconutText("Admitting Doc") . ":</b></td><tD>&nbsp;<font size=2>" . $ro->getAttendingDoc($registrationNo, "Admitting") . "</font></tD>\n</tr>\n</table>\n\n<table>\n<td><b>Address:</b>&nbsp;</tD>\n<tD>" . $ro->getPatientRecord_address() . "</tD>\n</table>\n\n<br><br>\n\n<table border=1 cellpadding=1 cellspacing=0>\n<tr>\n<th>&nbsp;Particular&nbsp;</th>\n<th>&nbsp;Actual&nbsp;</th>\n<th>&nbsp;PhilHealth&nbsp;</th>\n<th>&nbsp;Company&nbsp;</th>\n<th>&nbsp;Cash&nbsp;</th>\n</tr>\n\n<tr>\n<td>&nbsp;Medicine&nbsp;</td>\n<Td>&nbsp;{$medActual}</td>\n<td>&nbsp;{$medPHIC}</td>\n<td>&nbsp;{$medCompany}</td>\n<td>&nbsp;{$medCash}</td>\n</tr>\n\n\n<Tr>\n<td>&nbsp;Supplies</td>\n<td>&nbsp;{$supActual}</td>\n<td>&nbsp;{$supPHIC}</td>\n<td>&nbsp;{$supCompany}</td>\n<Td>&nbsp;{$supCash}</td>\n</tr>\n\n<Tr>\n<td>&nbsp;Laboratory</td>\n<td>&nbsp;{$labActual}</td>\n<td>&nbsp;{$labPHIC}</td>\n<td>&nbsp;{$labCompany}</td>\n<Td>&nbsp;{$labCash}</td>\n</tr>\n\n<Tr>\n<td>&nbsp;Radiology</td>\n<td>&nbsp;{$radActual}</td>\n<td>&nbsp;{$radPHIC}</td>\n<td>&nbsp;{$radCompany}</td>\n<Td>&nbsp;{$radCash}</td>\n</tr>\n\n<Tr>\n<td>&nbsp;Nursing Charges</td>\n<td>&nbsp;{$nsChargesActual}</td>\n<td>&nbsp;{$nsChargesPHIC}</td>\n<td>&nbsp;{$nsChargesCompany}</td>\n<Td>&nbsp;{$nsChargesCash}</td>\n</tr>\n\n<Tr>\n<td>&nbsp;Miscellaneous</td>\n<td>&nbsp;{$miscActual}</td>\n<td>&nbsp;{$miscPHIC}</td>\n<td>&nbsp;{$miscCompany}</td>\n<Td>&nbsp;{$miscCash}</td>\n</tr>\n\n<Tr>\n<td>&nbsp;Others</td>\n<td>&nbsp;{$othersActual}</td>\n<td>&nbsp;{$othersPHIC}</td>\n<td>&nbsp;{$othersCompany}</td>\n<Td>&nbsp;{$othersCash}</td>\n</tr>\n\n<Tr>\n<td>&nbsp;OR/DR/ER Fee</td>\n<td>&nbsp;{$orActual}</td>\n<td>&nbsp;{$orPHIC}</td>\n<td>&nbsp;{$orCompany}</td>\n<Td>&nbsp;{$orCash}</td>\n</tr>\n\n<Tr>\n<td>&nbsp;Rehab</td>\n<td>&nbsp;{$rehabActual}</td>\n<td>&nbsp;{$rehabPHIC}</td>\n<td>&nbsp;{$rehabCompany}</td>\n<Td>&nbsp;{$rehabCash}</td>\n</tr>\n\n<Tr>\n<td><font size=2>Room @ " . $ro->getQTY_room($registrationNo) . " day(s)</font> </td>\n<td>&nbsp;{$roomActual}</td>\n<td>&nbsp;{$roomPHIC}</td>\n<td>&nbsp;{$roomCompany}</td>\n<Td>&nbsp;{$roomCash}</td>\n</tr>\n\n<Tr>\n<td>&nbsp;<b>Hospital Bill</b></tD>\n<td>&nbsp;<b>" . number_format($hospitalBill_gt, 2) . "</b></tD>\n<td>&nbsp;<b>" . number_format($hospitalBill_phic, 2) . "</b></tD>\n<td>&nbsp;<b>" . number_format($hospitalBill_company, 2) . "</b></tD>\n<td>&nbsp;<b>" . number_format($hospitalBill_cash, 2) . "</b></tD>\n</tr>\n\n<Tr>\n<td>&nbsp;</tD>\n<td>&nbsp;</tD>\n<td>&nbsp;</tD>\n<td>&nbsp;</tD>\n<td>&nbsp;</tD>\n</tr>\n\n<tr>\n<td>&nbsp;</tD>\n<td>&nbsp;</tD>\n<td>&nbsp;</tD>\n<td>&nbsp;</tD>\n<td>&nbsp;</tD>\n</tr>\n\n" . $ro->getPatientDoc_soa2pdf($registrationNo) . "\n\n<tr>\n<td>&nbsp;<b>Professional Fee</b></tD>\n<td>&nbsp;<b>" . number_format($pf_gt, 2) . "</b></tD>\n<td>&nbsp;<b>" . number_format($pf_phic, 2) . "</b></tD>\n<td>&nbsp;<b>" . number_format($pf_company, 2) . "</b></tD>\n<td>&nbsp;<b>" . number_format($pf_cash, 2) . "</b></tD>\n</tr>\n\n\n<Tr>\n<td>&nbsp;</tD>\n<td>&nbsp;</tD>\n<td>&nbsp;</tD>\n<td>&nbsp;</tD>\n<td>&nbsp;</tD>\n</tr>\n\n<tr>\n<td>&nbsp;</tD>\n<td>&nbsp;</tD>\n<td>&nbsp;</tD>\n<td>&nbsp;</tD>\n<td>&nbsp;</tD>\n</tr>\n\n\n<tr>\n<td>&nbsp;<b>Total</b></tD>\n<td>&nbsp;<b>" . number_format($hospitalBill_gt + $pf_gt, 2) . "</b></tD>\n<td>&nbsp;<b>" . number_format($hospitalBill_phic + $pf_phic, 2) . "</b></tD>\n<td>&nbsp;<b>" . number_format($hospitalBill_company + $pf_company, 2) . "</b></tD>\n<td>&nbsp;<b>" . number_format($hospitalBill_cash + $pf_cash, 2) . "</b></tD>\n</tr>\n\n\n<tr>\n<td>&nbsp;<b>Discount</b></tD>\n<td>&nbsp;</tD>\n<td>&nbsp;</tD>\n<td>&nbsp;</tD>\n<td>&nbsp;<b>" . number_format($patientDiscount, 2) . "</b></tD>\n</tr>\n\n<tr>\n<td>&nbsp;<b>Grand Total</b></tD>\n<td>&nbsp;</tD>\n<td>&nbsp;</tD>\n<td>&nbsp;</tD>\n<td>&nbsp;<b>" . number_format($grandTotal, 2) . "</b></tD>\n</tr>\n\n<tr>\n<td>&nbsp;<b>Payments</b></tD>\n<td>&nbsp;</tD>\n<td>&nbsp;</tD>\n<td>&nbsp;</tD>\n<td>&nbsp;<b>" . number_format($ro->getPaymentHistory_showUp_returnPaid(), 2) . "</b></tD>\n</tr>\n\n<tr>\n<td>&nbsp;</td>\n<td>&nbsp;</td>\n<td>&nbsp;</td>\n<td>&nbsp;</td>\n<td>&nbsp;</td>\n</tr>\n\n\n<tr>\n<td>&nbsp;<b>BALANCE</b></td>\n<td>&nbsp;</td>\n<td>&nbsp;</td>\n<td>&nbsp;</td>\n<td>&nbsp;<b> " . number_format($hospitalBill_cash + $pf_cash - $ro->getPaymentHistory_showUp_returnPaid(), 2) . " </b></td>\n</tr>\n\n</table>\n\n<br><br><br><br>\n<hr>\n<br><br>\n\n<Table>\n\n<td style='width:90%;'>\n<font size=2><u>MYNARD A. BAJO</u><Br><b>Billing Officer</b></font>\n</td>\n\n\n<td>&nbsp;</td>\n<td>&nbsp;</td>\n<td>&nbsp;</td>\n<td>&nbsp;</td>\n<td>&nbsp;</td>\n<td>&nbsp;</td>\n<td>&nbsp;</td>\n<td>&nbsp;</td>\n<td>&nbsp;</td>\n<td>&nbsp;</td>\n<td>&nbsp;</td>\n<td>&nbsp;</td>\n<td>&nbsp;</td>\n\n\n\n\n\n<td>\n<font size=2><u>HAZEL S. CASTIGADOR</u><Br><b>Medical Clerk</b></font>\n</td>\n\n\n<tr>\n<td>&nbsp;</td>\n</tr>\n<tr>\n<td>&nbsp;</td>\n</tr>\n<tr>\n<td>&nbsp;</td>\n</tr>\n<tr>\n<td>&nbsp;</td>\n</tr>\n<tr>\n<td>&nbsp;</td>\n</tr>\n\n<tr>\n<td>&nbsp;</td>\n<td>&nbsp;</td>\n<td>&nbsp;</td>\n<td>&nbsp;</td>\n<td>&nbsp;</td>\n<td>&nbsp;</td>\n<td>&nbsp;</td>\n<td>&nbsp;</td>\n<td>&nbsp;</td>\n\n<tD>&nbsp;&nbsp;\n<font size=2>Certified Correct:<br></font>\n<br>\n<font size=2><u>MARIBETH B. SANDIG</u><Br><b>Hospital Administrator</b></font>\n</tD>\n</tr>\n</table>\n\n<br><br><br><br><br><br><br>\n\n\n\n\n\n";
$pdfFile = "/opt/lampp/htdocs/SOA_" . $ro->getPatientRecord_lastName() . "_" . $ro->getPatientRecord_firstName() . "-" . $registrationNo . ".pdf";
$html2pdf->WriteHTML($content);
$html2pdf->Output($pdfFile);
//echo "<table border=1>".$ro->getPatientDoc_soa2pdf($registrationNo)."</table>"
开发者ID:rickyx12,项目名称:protacio,代码行数:31,代码来源:soa2pdf.php

示例13: database

.astyle {text-decoration: none;}
.table1Bottom {border-bottom: 1px solid #000000;}
</style>
</head>

<body>
<?php 
include "../../myDatabase2.php";
$ro = new database();
$registrationNo = $_GET['registrationNo'];
$dateCharge = $_GET['dateCharge'];
mysql_connect($ro->myHost(), $ro->getUser(), $ro->getPass());
mysql_select_db($ro->getDB());
$ro->getPatientProfile($registrationNo);
$birthDatefmt = date("m/d/Y", strtotime($ro->getPatientRecord_birthDate()));
$birthDate = explode("/", $birthDatefmt);
$age = date("md", date("U", mktime(0, 0, 0, $birthDate[0], $birthDate[1], $birthDate[2]))) > date("md") ? date("Y") - $birthDate[2] - 1 : date("Y") - $birthDate[2];
echo "\n<div align='left'>\n  <table width='345' border='0' cellpadding='0' cellspacing='0' bordercolor='#000000'>\n    <tr>\n      <td valign='top'><table width='100%' border='0' cellpadding='0' cellspacing='0' bordercolor='#000000'>\n        <tr>\n          <td valign='top'><table width='100%' border='0' cellpadding='0' cellspacing='0'>\n            <tr>\n              <td height='6' colspan='6'></td>\n            </tr>\n            <tr>\n              <td width='80'><div align='left' class='couriernew11black'>&nbsp;Patient ID</div></td>\n              <td width='6'><div align='center' class='couriernew11black'>:</div></td>\n              <td width='75'><div align='left' class='couriernew13blackbold'><u>" . $ro->getRegistrationDetails_patientNo() . "</u></div></td>\n              <td width='35'><div align='left' class='couriernew11black'>Date</div></td>\n              <td width='6'><div align='center' class='couriernew11black'>:</div></td>\n              <td width='auto'><div align='right' class='couriernew10blackbold'><u>" . date("m/d/Y - H:i:s") . "</u>&nbsp;</div></td>\n            </tr>\n            <tr>\n              <td height='6' colspan='6'></td>\n            </tr>\n          </table></td>\n        </tr>\n        <tr>\n          <td valign='top'><table width='100%' border='0' cellpadding='0' cellspacing='0'>\n            <tr>\n              <td height='10'><div align='left' class='couriernew12black'>&nbsp;Patient Name:</div></td>\n            </tr>\n            <tr>\n              <td width='auto'><div align='left' class='couriernew14blackbold'>&nbsp;<u>" . $ro->getPatientRecord_lastName() . ", " . $ro->getPatientRecord_firstName() . " " . $ro->getPatientRecord_middleName() . "&nbsp;</u></div></td>\n            </tr>\n          </table></td>\n        </tr>\n        <tr>\n          <td valign='top'><table width='100%' border='0' cellpadding='0' cellspacing='0'>\n            <tr>\n              <td height='10' colspan='6'></td>\n            </tr>\n            <tr>\n              <td width='45'><div align='left' class='couriernew12black'>&nbsp;B-Date</div></td>\n              <td width='6'><div align='center' class='couriernew12black'>:</div></td>\n              <td width='196'><div align='left' class='couriernew12blackbold'><u>" . $ro->getPatientRecord_birthDate() . "</u></div></td>\n              <td width='50'><div align='left' class='couriernew12black'>Age/Sex</div></td>\n              <td width='6'><div align='center' class='couriernew12black'>:</div></td>\n              <td width='auto'><div align='right' class='couriernew12blackbold'><u>{$age}/" . strtoupper($ro->getPatientRecord_Gender()) . "</u>&nbsp;</div></td>\n            </tr>\n          </table></td>\n        </tr>\n        <tr>\n          <td valign='top'><table width='100%' border='0' cellpadding='0' cellspacing='0'>\n            <tr>\n              <td height='6' colspan='3'></td>\n            </tr>\n            <tr>\n              <td width='55'><div align='left' class='couriernew12black'>&nbsp;Physician</div></td>\n              <td width='6'><div align='center' class='couriernew12black'>:</div></td>\n              <td width='auto'><div align='left' class='couriernew12blackbold'><u>" . $ro->getAttendingDoc($registrationNo, "ATTENDING") . "</u></div></td>\n            </tr>\n          </table></td>\n        </tr>\n        <tr>\n          <td valign='top'><table width='100%' border='0' cellpadding='0' cellspacing='0'>\n            <tr>\n              <td height='6' colspan='3'></td>\n            </tr>\n            <tr>\n              <td width='30'><div align='left' class='couriernew12black'>&nbsp;Room</div></td>\n              <td width='6'><div align='center' class='couriernew12black'>:</div></td>\n              <td width='auto'><div align='left' class='couriernew12blackbold'><u>" . $ro->getRegistrationDetails_room() . "</u>&nbsp;</div></td>\n            </tr>\n          </table></td>\n        </tr>\n        <tr>\n          <td valign='top'><table width='100%' border='0' cellpadding='0' cellspacing='0'>\n            <tr>\n              <td height='20'></td>\n            </tr>\n            <tr>\n              <td><div align='center'><table width='100%' border='0' cellpadding='0' cellspacing='0'>\n                <tr>\n                  <td width='auto'><div align='left' class='couriernew10blackbold'>&nbsp;Description&nbsp;</div></td>\n                </tr>\n";
$asql = mysql_query("SELECT description,timeCharge,remarks,chargeBy,status FROM patientCharges WHERE registrationNo = '{$registrationNo}' AND departmentStatus = '' AND title = 'LABORATORY' AND status NOT LIKE 'DELETED_%%%%%%' AND dateCharge='{$dateCharge}' ");
while ($afetch = mysql_fetch_array($asql)) {
    echo "\n                <tr>\n                  <td valign='top'><div align='left' class='couriernew14blackbold'>&nbsp;" . $afetch['description'] . "&nbsp;</div></td>\n                </tr>\n";
    if ($afetch['remarks'] != "") {
        echo "\n                <tr>\n                  <td valign='top'><div align='left' class='couriernew11black'>&nbsp;(" . $afetch['remarks'] . ")&nbsp;</div></td>\n                </tr>\n";
    }
}
echo "\n              </table></div></td>\n            </tr>\n          </table></td>\n        </tr>\n      </table></td>\n    </tr>\n  </table>\n</div>\n";
?>

</body>
</html>
开发者ID:rickyx12,项目名称:mendero,代码行数:30,代码来源:labFormPrint3.php

示例14:

$hospitalBill_cash = 0;
$hospitalBill_phic = 0;
$hospitalBill_company = 0;
$hospitalBill_gt = 0;
$pf_cash = 0;
$pf_phic = 0;
$pf_company = 0;
$pf_gt = 0;
echo "<center><div style='border:0px solid #000000; width:700px; height:auto; border-color:black black black black;'>";
echo "";
echo "<font size=5><b>" . $ro->getReportInformation("hmoSOA_name") . "</b></font>";
echo "<br><font size=2>" . $ro->getReportInformation("hmoSOA_address") . "</font>";
echo "<br><br><center>";
echo "<table>";
echo "<tr>";
echo "<td>" . $ro->coconutText("Name") . ":&nbsp;</td><td>&nbsp;" . $ro->getPatientRecord_lastName() . ", " . $ro->getPatientRecord_firstName() . "</td>";
echo "<td>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</td><td>" . $ro->coconutText("Reg#") . "</td><td>&nbsp;{$registrationNo}</td>";
echo "</tr>";
echo "<tr>";
echo "<Td>" . $ro->coconutText("PHIC") . ":&nbsp;</td><td>&nbsp;" . $ro->getPatientRecord_phic() . "</td>";
echo "<td>&nbsp;</td>";
echo "<td>CaseType:</td><TD>" . $ro->getRegistrationDetails_caseType() . "</tD>";
echo "</tr>";
echo "<tr>";
echo "<Td>" . $ro->coconutText("Company") . ":&nbsp;</td><td>&nbsp;" . $ro->getRegistrationDetails_company() . "</td>";
echo "<td>&nbsp;</tD>";
echo "<Td>" . $ro->coconutText("Fx Diagnosis:") . ":&nbsp;</td><td>&nbsp;" . $ro->getRegistrationDetails_finalDiagnosis() . "</td>";
echo "</tr>";
echo "<tr>";
echo "<Td>" . $ro->coconutText("Admitted") . ":&nbsp;</td><td>&nbsp;" . $ro->getRegistrationDetails_dateRegistered() . "</td>";
echo "<td>&nbsp;</td>";
开发者ID:rickyx12,项目名称:protacio,代码行数:31,代码来源:summary_oct_4_2012.php

示例15: database

<?php

include "../../myDatabase.php";
$registrationNo = $_GET['registrationNo'];
//$username = $_GET['username'];
$ro = new database();
/*
$ro->getBatchNo();
$myFile = "/opt/lampp/htdocs/COCONUT/trackingNo/batchNo.dat";
$fh = fopen($myFile, 'r');
$batchNo = fread($fh, 100);
fclose($fh);
*/
echo "\n\n<style type='text/css'>\na \n{ \ntext-decoration:none;\ncolor:black;\nfont-weight:bold;\n }\nul { list-style-type:none; }\ndisplay: block;\n</style>\n\n";
$ro->getPatientProfile($registrationNo);
echo "<br><hr><font size=2 color=red>" . $ro->getPatientRecord_lastName() . " " . $ro->getPatientRecord_firstName() . " " . $ro->getPatientRecord_middleName() . "</font><hr>";
echo "<ul>";
echo "<li><a href='http://" . $ro->getMyUrl() . "/COCONUT/patientProfile/patientProfile_right.php?registrationNo=" . $ro->getRegistrationDetails_registrationNo() . "' target='rightFrame'><font size=2>Information</font></a></li>";
echo "<li><a href='http://" . $ro->getMyUrl() . "/COCONUT/patientProfile/soaOption.php?registrationNo={$registrationNo}&username=' target='rightFrame'><font size=2>S.O.A</font></a></li>";
echo "<li><a href='http://" . $ro->getMyUrl() . "/COCONUT/Doctor/doctorModule/soapListed.php?registrationNo={$registrationNo}&username=' target='rightFrame'><font size=2>S.O.A.P</font></a></li>";
echo "<li><a href='http://" . $ro->getMyUrl() . "/COCONUT/Results/labResultName.php?registrationNo={$registrationNo}&title=LABORATORY&username=' target='rightFrame'><font size=2>Lab Results</font></a></li>";
echo "<li><a href='http://" . $ro->getMyUrl() . "/COCONUT/Results/Radiology/radioResult_list.php?registrationNo={$registrationNo}&username=' target='rightFrame'><font size=2>Radio Results</font></a></li>";
echo "<li><a href='http://" . $ro->getMyUrl() . "/COCONUT/Homepage/viewNote_homepage.php?noteType=Comments&registrationNo=" . $ro->getRegistrationDetails_registrationNo() . "' target='rightFrame'><font size=2>Comments</font></a></li>";
echo "</ul>";
echo "<center><Br>";
echo "<font color=red size=1>Pls Proceed to Billing for Complains,Questions etc.</font>";
开发者ID:rickyx12,项目名称:protacio,代码行数:26,代码来源:patientProfile_left_homepage.php


注:本文中的database::getPatientRecord_lastName方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。