|
Server IP : 2a02:4780:3:1493:0:3736:a38e:7 / Your IP : 216.73.216.218 Web Server : LiteSpeed System : Linux sg-nme-web1393.main-hosting.eu 4.18.0-553.77.1.lve.el8.x86_64 #1 SMP Wed Oct 8 14:21:00 UTC 2025 x86_64 User : u926327694 ( 926327694) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : OFF | Python : OFF Directory (0755) : /home/u926327694/domains/smsoft.in/public_html/demo/src/../../arjdwd/adminweb/ |
| [ Home ] | [ C0mmand ] | [ Upload File ] |
|---|
<?php
$page_title = 'Alumini 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>Action</th>
<th>Sr. No.</th>
<?php
$sel_f=mysqli_query($con,"SHOW COLUMNS FROM alumni_feedback");
while($res_f=mysqli_fetch_array($sel_f))
{
?>
<th><?php echo ucwords(str_replace("_"," ",$res_f['Field'])); ?></th>
<?php
}
?>
</tr>
</thead>
<tbody>
<?php
$sel_alumini=mysqli_query($con,'select * from alumni_feedback order by id desc');
$a=0;
while($res=mysqli_fetch_array($sel_alumini))
{
$a=$a+1;
?>
<tr>
<td>
<a href="alumini-feedback-delete.php?id=<?php echo $res['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>
<td><center><?php echo $a ; ?></center></td>
<?php
$sel_f=mysqli_query($con,"SHOW COLUMNS FROM alumni_feedback");
while($res_f=mysqli_fetch_array($sel_f))
{
$field=$res_f['Field'];
if($field=='created_date')
{
?>
<td><?php echo Date("d-m-Y",strtotime($res[$field])); ?></td>
<?php
}
else
{
?>
<td><?php echo $res[$field]; ?></td>
<?php
}
}
?>
</tr>
<?php
}
?>
</tbody>
</table>
</div>
<!-- /.card-body -->
</div>
</div>
</div>
</div>
</section>
</div>
<?php include 'footer.php'; ?>