ok
Direktori : /proc/self/root/home/ngwcolle/www/ |
Current File : //proc/self/root/home/ngwcolle/www/forms.php |
<?php include "header.php"; date_default_timezone_set('Asia/Kolkata'); include "admin/includes/config.php"; ?> <section class="inner-banner"></section> <section class="breadcrumb-sec"> <div class="container"> <div class="row"> <div class="col-md-12"> <nav aria-label="breadcrumb"> <ol class="breadcrumb"> <li class="breadcrumb-item"><a href="index.html">Home</a></li> <li><i class="fa fa-caret-right" aria-hidden="true"></i></li> <li class="breadcrumb-item">Forms</li> </ol> </nav> </div> </div> </div> </section> <section class="section-15 about-section"> <div class="container"> <div class="row"> <div class="col-md-9"> <div class="title"> <h1><span>Forms</span></h1> </div> <table class="table" id="tt" width="100%" border="1" align="center" cellpadding="2" cellspacing="1" bordercolor="#ecf1f5" style="border-collapse:collapse;"> <thead> <tr> <th width="30" align="center" bgcolor="#053d6a" class="white" style="line-height:120%; color:#FFF;">#</th> <!-- <th width="125" align="center" bgcolor="#053d6a" class="white" style="line-height:120%; color:#FFF;">Date</th> --> <th width="906" align="left" bgcolor="#053d6a" class="white" style="color:#FFF;">Form Name</th> <th width="60" align="center" bgcolor="#053d6a" class="white" style="color:#FFF;">Download</th> </tr> </thead> <?php $query=mysqli_query($con,"select * from tbl_form order by id desc"); $cnt=1; while($row=mysqli_fetch_array($query)){ ?> <tbody> <tr> <td><?php echo $cnt;?></td> <td><?php echo $row['fsubject'];?></td> <td align="center" valign="top"><a href="upload/doc/<?php echo $row['docpath'];?>" target="_blank"><img src="assets/images/link.png" style="width:20px;"></a></td> </tr> <?php $cnt++; } ?> </tbody> </table> </div> <?php include"sidebar.php";?> </div> </section> <?php include "footer.php"; ?> <script> // $('#example').dataTable( { // // "dom": '<"top"i>rt<"bottom"flp><"clear">' // } ) $(document).ready(function () { // $('#tt').DataTable(); $('#tt').dataTable( { "pageLength": 50 } ); }); </script>