| 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 = "Alumni";
include('../admin/connection.php');
$q_alu = "select * from tbl_alumni where status='Y' order by id desc";
$res_alu = mysqli_query($dbCon, $q_alu);
?>
<!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">Alumni</h1>
</section>
<!-- end inner banner -->
<!--Start Containt-->
<div class="container mt-5 ">
<div class="sec-title text-center mb-3" data-aos="fade-up" data-aos-duration="1000">
<span class="title">Our Alumni</span>
<h2>Some of our distinguished alumni</h2>
<div class="divider">
<span class="fa fa-mortar-board"></span>
</div>
</div>
<div class="row">
<?php
while($row_alumni = mysqli_fetch_assoc($res_alu)){
?>
<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/alumni_pic/<?php echo $row_alumni['pic']; ?>" class="img-fluid d-block m-auto pt-2 rounded" alt="Team" style="min-height:300px; max-height:300px; width:95%">
</div>
<div class="faculties-info bg-info 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_alumni['name']; ?></h5>
<p>
<b> <?php echo $row_alumni['designation']; ?></b>
in <?php echo $row_alumni['company']; ?><br />
Diploma in <b><?php echo $row_alumni['branch']; ?></b> in <b><?php echo $row_alumni['year']; ?></b><br />
</p>
</div>
<div class="fac-social text-center">
<p class=" button-box">
<b> <a href="#" target="_blank">View More</a></b>
</p>
</div>
</div>
</div>
</div>
<?php
}
?>
</div>
<div class="row mb-5">
<div class="col-md-4"></div>
<h5 class="">Are You Alumnus ? </h5>
<a class="rounded btn btn-primary ml-3" href="regalumni.php"> register Your self </a>
<div class="col-md-4"></div>
</div>
</div>
<!-- page content end -->
<?php
include('../home_include/footer.php');
?>
</div>
<?php
include('../home_include/footer_link.php');
?>
</body>
</html>