| 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 = "AICTE Approval";
include("../admin/connection.php");
$q_aicte = "select * from tbl_aicte order by doc_id desc";
$res_aicte = mysqli_query($dbCon, $q_aicte);
?>
<!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">AICTE Approval</h1>
</section>
<div class="container mt-5">
<table class="table table-bordered mt-5 table-responsive-sm" id="mytable">
<thead>
<tr>
<th>Sr No.</th>
<th>Title</th>
<th>File</th>
<th>Uploaded Date</th>
</tr>
</thead>
<tbody>
<?php
$i=1;
while($row_aicte = mysqli_fetch_assoc($res_aicte)){
?>
<tr>
<td><?php echo $i; ?></td>
<td><?php echo $row_aicte['title']; ?></td>
<td><a href="../admin/aicte/<?php echo $row_aicte['file']; ?>" target="_blank">View </a></td>
<td><?php echo $row_aicte['date']; ?></td>
</tr>
<?php
$i++;
}
?>
</tbody>
</table>
</div>
<!-- end inner banner -->
<script src="../../ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js"></script>
<script type="text/javascript" src="../../cdn.datatables.net/1.10.16/js/jquery.dataTables.min.js"></script>
<script>
$(document).ready(function () {
$('#mytable').DataTable();
});
</script>
<!-- page content end -->
<?php
include('../home_include/footer.php');
?>
</div>
<?php
include('../home_include/footer_link.php');
?>
</body>
</html>