Your IP : 216.73.216.40


Current Path : /var/www/html/mmishra/icure/
Upload File :
Current File : /var/www/html/mmishra/icure/dschedules.inc

<h3 align='left'>Schedule of Doctor</h3>

<center>
<table border='1' width='90%'>
<tr><th nowrap>Time Slots\Day of Week</th>


<?php

$tbl = 'dschedules';
$period = date("Y-m");

echo "<th>" . implode($weekdays, "</th><th>") . "</th></tr>";

$i = 0; $j = 0; $k = 0;

$rs = mysql_query("select distinct timing from $tbl where period='$period' order by sch_id");
if (mysql_num_rows($rs)) {
	while ($o = mysql_fetch_object($rs)) {
		$i++;
		$timing = $o->timing;
	
		echo "<tr><th>$timing</th>";
		
		$j = 0;
		$sr = mysql_query("select * from $tbl where period='$period' and timing='$timing' order by sch_id");
		while ($q = mysql_fetch_object($sr)) {
			$j++;
			echo "<td nowrap align='center' style='font-size: x-small'>". ($q->dr_id ? doctor_detail($q->dr_id) : 'x'). "</td>";
		}

		echo "</tr>";
	}
} else {
	echo "<tr><td colspan='8'>Schedule of this period is not available.</td></tr>";
}
?>

</table>
</center>

<div align='left'>
<b>Note:</b>
<ol>
<li>10 PM to 7 AM - is emergency service hours and NOT to be treated as OPD service hours.</li>
<li>All doctors are available on their cell phones round the clock for emergency consultation:
<table border='1' width='70%' align='center'>
<?php

$rs = mysql_query("select * from doctors order by dr_id");
while ($o = mysql_fetch_object($rs)) {
	echo "<tr><td nowrap>$o->dr_name</td><td>$o->specialization</td><td>$o->contact</td><td>$o->email</td></tr>";
}
?>
</table></li> 
<li>The doctor referring any student for admission to a Nursing Home, shall during his next duty hour keep track of the admitted student and 
make a record of the same in the duty register at the Health Center.</li>
<li>Student desirous of availing facilities under MCAIP (Insurance Policy) MUST carry their Identity Cards alongwith them and apprise the Nursing Home Staff about their coverage under the policy with National Insurance Company. Identity Card is a must and in absence of the same, students are liable to be billed and charged by the Nursing Home.</li>
<li>Contact person for insurance purposes is Sri. H.S. Pande - 9415214231</li>
</ol>
</div>