|
Server IP : 2a02:4780:11:1373:0:3017:be17:10 / Your IP : 216.73.216.55 Web Server : LiteSpeed System : Linux in-mum-web1273.main-hosting.eu 4.18.0-553.37.1.lve.el8.x86_64 #1 SMP Mon Feb 10 22:45:17 UTC 2025 x86_64 User : u806862359 ( 806862359) PHP Version : 8.2.27 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : OFF | Python : OFF Directory (0755) : /home/u806862359/domains/pbacbse.org/public_html/adminweb/uploads/../ |
| [ Home ] | [ C0mmand ] | [ Upload File ] |
|---|
<?php
$page_title = 'Document List';
include 'header.php';
?>
<div class="content-wrapper">
<section class="content mt-4">
<div class="container-fluid">
<div class="row">
<div class="col-md-12">
<?php include('alert-msg.php'); ?>
<div class="card card-primary">
<div class="card-header">
<h3 class="card-title"><?php echo $page_title; ?></h3>
</div>
<!-- /.card-header -->
<div class="card-body">
<table class="table table-bordered table-striped main_datatables">
<thead>
<tr>
<th>Sr. No.</th>
<th>Category</th>
<th>Title</th>
<th>File</th>
<th>Action</th>
</tr>
</thead>
<tbody>
<?php
$sel_documents=mysqli_query($con,'select * from documents order by id desc');
$i=1;
while($row_documents=mysqli_fetch_array($sel_documents))
{
?>
<tr>
<td><?php echo $i; ?></td>
<td><?php echo $row_documents['category']; ?></td>
<td><?php echo $row_documents['title']; ?></td>
<td><a href="<?php echo $row_documents['file']; ?>" target="_blank"><i class="fas fa-file fa-2x"></i></a></td>
<td>
<?php
if($row_documents['is_active']==1)
{
?>
<a href="document-status.php?id=<?php echo $row_documents['id']; ?>&status=0" class="btn btn-sm btn-primary"><i class="fas fa-times"></i></a>
<?php
}
else
{
?>
<a href="document-status.php?id=<?php echo $row_documents['id']; ?>&status=1" class="btn btn-sm btn-primary"><i class="fas fa-check"></i></a>
<?php
}
?>
<a href="document-edit.php?id=<?php echo $row_documents['id']; ?>" class="btn btn-sm btn-primary"><i class="fas fa-edit"></i></a>
<a href="document-delete.php?id=<?php echo $row_documents['id']; ?>" onclick="return confirm('Are you sure you want to delete ?');" class="btn btn-sm btn-danger"><i class="fas fa-trash"></i></a>
</td>
</tr>
<?php
$i=$i+1;
}
?>
</tbody>
</table>
</div>
<!-- /.card-body -->
</div>
</div>
</div>
</div>
</section>
</div>
<?php include 'footer.php'; ?>