PK

ADDRLIN : /home/anibklip/babekehospital.org/php/
FLL :
Current File : /home/anibklip/babekehospital.org/php/header.php

<?php 

	include "connect-mysql.php";

?>

<!DOCTYPE html>

<html>

<head>

<title>BABE KE MULTI SPECIALITY HOSPITAL</title>

<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">

<!--theme colour-->

<link rel="stylesheet" id="color" href="css/blue.css">

<!-- medicom style -->

<link href="css/medicom.css" rel="stylesheet">

<!-- Bootstrap -->

<link href="css/bootstrap.css" rel="stylesheet">

<!-- Anything Slider -->

<link rel="stylesheet" href="css/anythingslider.css">

<!-- date picker -->

<link href="css/jquery-ui-1.10.3.custom.css" rel="stylesheet">

<!-- Form styling -->

<link rel="stylesheet" href="css/uniform.default.css" media="screen" />

<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->

<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->

<!--[if lt IE 9]>

      <script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>

      <script src="https://oss.maxcdn.com/libs/respond.js/1.3.0/respond.min.js"></script>

    <![endif]-->

</head>

<body>

<div id="wrapper">

<header class="medicom-header">

  <div class="colourfull-row"></div>

  <div class="container">

    <nav class="navbar navbar-default" role="navigation">

      <!-- Brand and toggle get grouped for better mobile display -->

      <div class="navbar-header">

        <button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1"> <span class="sr-only">Toggle navigation</span> <span class="icon-bar"></span> <span class="icon-bar"></span> <span class="icon-bar"></span> </button>

        <a class="navbar-brand" href="index.php"><img src="images/logo.png" alt="image" title="BABE-Ke Multispeciality Hospital"></a> </div>

      <!-- Collect the nav links, forms, and other content for toggling -->

      <div class="collapse navbar-collapse navbar-right" id="bs-example-navbar-collapse-1">

        <ul class="nav navbar-nav">

          <li> <a href="index.php">Home</a> </li>

         
         <li class="dropdown">
<a class="dropdown-toggle" data-toggle="dropdown" href="about-us.php">About Us</a>
<ul class="dropdown-menu">
<li>
<a href="about-us.php">About Us </a>
</li>
<li>
<a href="camps.php">Our Free Camps</a>
</li>
</ul>
</li>
          <li class="mega-menu-item"><a href="javascript:void(0);">DEPARTMENTS</a>

            <div class="mega-menu"> <img src="images/mega-menu-img.jpg" class="img-rounded" alt="" title="">

              <?php

				$sno = 0;

				$sqlDep = mysql_query("SELECT * FROM  department where isDelete='0' order by categoryName asc");

				while($rowsDep = mysql_fetch_array($sqlDep)){

					$sno++;

					if($sno==1){echo '<ul>';}	

					echo '<li><a href="medical-department.php?dp='.$rowsDep['id'].'">'.$rowsDep['categoryName'].'</a></li>';

					if($sno==6){

						echo '</ul>';

						$sno = 0;

					}	

				}

				?>

            </div>

          </li>

			
       <li class="dropdown">
<a class="dropdown-toggle" data-toggle="dropdown" href="gallery.php">Gallery</a>
<ul class="dropdown-menu">
<li>
<a href="gallery.php">Picture Gallery</a>
</li>
<li>
<a href="v-gallery.php">Video Gallery</a>
</li>
</ul>
</li>

     

          </li>
			<li> <a href="donate.php">Donate</a> </li>

          <li> <a href="contact-us.php">Contact Us</a> </li>

        </ul>

      </div>

      <!-- /.navbar-collapse -->

    </nav>

  </div>

  <div class="header-bottom-line"></div>

</header>


PK 99