| 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 = "RTI";
include("../admin/connection.php");
$q_rti = "select * from tbl_rti order by doc_id desc";
$res_rti = mysqli_query($dbCon, $q_rti);
?>
<!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">Right to Information</h1>
</section>
<?php
while($row_rti = mysqli_fetch_assoc($res_rti)){
?>
<div class="container align-content-center">
<div class="sec-title text-center mt-4">
<span class="title"></span>
<h2><?php echo $row_rti['title']; ?></h2>
<div class="divider">
<span class="fa fa-mortar-board"></span>
</div>
</div>
<object data="../admin/rti/<?php echo $row_rti['file']; ?>" type="application/pdf" width="100%" height="650">
<p>
<b class="">Notice </b>: This browser does not support PDFs. Please download the PDF to view it:<br />
<a href="../admin/rti/<?php echo $row_rti['file']; ?>" download class="btn btn-primary">Download PDF</a>.
</p>
</object>
</div>
<hr />
<?php
}
?>
<!-- page content end -->
<?php
include('../home_include/footer.php');
?>
</div>
<?php
include('../home_include/footer_link.php');
?>
</body>
</html>