| Server IP : 50.63.8.194 / Your IP : 216.73.216.202 Web Server : Microsoft-IIS/10.0 System : Windows NT P3NWVPWEB026 10.0 build 17763 (Windows Server 2016) AMD64 User : IWPD_7824(SpiPanel) ( 0) PHP Version : 7.3.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : G:/PleskVhosts/polyprep.in/mmitshamli.ac.in/home/ |
Upload File : |
<?php
$title = "Faculties";
include("../admin/connection.php");
$q_fac = "select * from tbl_teacher order by tech_id";
$res_fac = mysqli_query($dbCon, $q_fac);
?>
<!DOCTYPE html>
<html lang="en">
<head>
<?php
include('../home_include/header_link.php');
?>
</head>
<body>
<div class="page-wrapper" id="page-wrapper">
<?php
include('../home_include/header.php');
?>
<!-- page content start -->
<!-- start inner banner -->
<section class="inner-banner">
<h1 class="font-weight-bold text-center">Faculty</h1>
</section>
<!-- end inner banner -->
<!-- start faculties -->
<section class="faculties">
<div class="container">
<div class="sec-title text-center mb-3" data-aos="fade-up" data-aos-duration="1000">
<span class="title">Faculties</span>
<h2>Our Dedicated Faculties</h2>
<div class="divider">
<span class="fa fa-mortar-board"></span>
</div>
</div>
<div class="row">
<?php
while($row_fac = mysqli_fetch_assoc($res_fac)){
?>
<div class="col-lg-4 col-md-6 mb-5">
<div class="faculty-block">
<div class="team-image">
<div class="border-line"></div>
<img src="../admin/teacher/<?php echo $row_fac['pic']; ?>" class="img-fluid d-block m-auto pt-2" alt="Team" style="min-height:320px; max-height:320px; width:95%">
</div>
<div class="faculties-info theme-orange py-2 mt-3" data-aos="zoom-in" data-aos-duration="550">
<div class="fac-text text-center" data-aos="fade-up" data-aos-duration="1000">
<h5 class="font-weight-bold"><?php echo $row_fac['name']; ?></h5>
<p>
<?php echo $row_fac['designation']; ?><br />
<?php echo $row_fac['qualification']; ?><br />
</p>
</div>
<div class="fac-social text-center">
<p class=" button-box">
<a href="#" target="_blank">View More</a>
</p>
</div>
</div>
</div>
</div>
<?php
}
?>
</div>
</div>
</section>
<!-- end faculties -->
<!-- page content end -->
<?php
include('../home_include/footer.php');
?>
</div>
<?php
include('../home_include/footer_link.php');
?>
</body>
</html>