Your IP : 216.73.216.40


Current Path : /var/www/html/mmishra/icure/staff/
Upload File :
Current File : /var/www/html/mmishra/icure/staff/index.php

<?php
require("../session.inc");

//exit on session expiry
if (!$user or $role == 'Patient') header("Location: /");

echo $header;

if (!$print) {

?>

<div align='left'>
<b>Status</b> [ <a href='staff/?pg=patients'>Patients</a> ]
<b>OPD</b> [ <a href='staff/?pg=registration'>Registration</a> | <a href='staff/?pg=prescription'>Prescription</a> ]
<b>IPD</b> [ <a href='staff/?pg=admission'>Admission</a> | <a href='staff/?pg=bhtest'>BHTest</a> | <a href='staff/?pg=discharge'>Discharge</a> ]
<b>M.Store</b> [ <a href='staff/?pg=medicines'>Medicine</a> | <a href='staff/?pg=receipt'>Receipt</a> ]
<b>P.Store</b> [ <a href='staff/?pg=materials'>Material</a> | <a href='staff/?pg=preceipt'>Receipt</a> ]
<b>Utilization</b> [ <a href='staff/?pg=medication'>Medication</a> | <a href='staff/?pg=dressing'>Dressing</a> ]
<b>Pathology</b> [ <a href='staff/?pg=phresult'>Result</a> ]
<b>Bill</b> [ <a href='staff/?pg=bill'>Receipt</a> ]
<b>Registrations</b> [ <a href='staff/?pg=registrations&reg=daily'>Daily</a> | <a href='staff/?pg=registrations&reg=monthly'>Monthly</a> | <a href='staff/?pg=registrations&reg=yearly'>Yearly</a> ]
</div>

<?php
}

if (!$pg) $pg = 'registration';
include("$pg.inc");

echo $footer;

?>