| 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/mmit_shamli/home/ |
Upload File : |
<?php
$title = "Placement";
include('../admin/connection.php');
$query="select * from tbl_placement order by place_id desc";
$res=mysqli_query($dbCon,$query);
?>
<!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 -->
<section class="inner-banner">
<h1 class="font-weight-bold text-center">Placement Details</h1>
</section>
<?php
while($row = mysqli_fetch_assoc($res)){
?>
<div class="sec-title text-center mb-3">
<span class="title"></span>
<h2><?php echo $row['title'] ?></h2>
<div class="divider">
<span class="fa fa-mortar-board"></span>
</div>
</div>
<div class="container-fluid">
<embed src="../admin/placement/<?php echo $row['file'] ?>" class="p-5"
type="application/pdf"
frameBorder="0"
scrolling="auto"
height="750px;"
width="100%" /></embed>
</div>
<?php
}
?>
<!-- page content end -->
<?php
include('../home_include/footer.php');
?>
</div>
<?php
include('../home_include/footer_link.php');
?>
</body>
</html>