Domain: amberpublishers.in
Server Adress: 86.38.243.169
privdayz.com
<?php
require('Common/Header.php');
?>
<!-- Content Wrapper -->
<!-- ----------Top bar start------------ -->
<!-- ----------Top bar End------------ -->
<!-- Begin Page Content -->
<div class="container-fluid">
<div class="row">
<div class="col-12">
<div class="card shadow">
<div class="card-header">
<h4 class="text-primary row-weight-bold" style="font-size:15px">Other Certificate</h4>
</div>
<div class="card-body">
<table class="table table-bordered DataTable" width="100%" cellspacing="0">
<thead>
<tr>
<th class="text-center">Full<i class="invisible">_</i>Name</th>
<th class="text-center">Contact<i class="invisible">_</i>Number</th>
<th class="text-center">Email</th>
<th class="text-center">Serial<i class="invisible">_</i>Number</th>
<th class="text-center">File</th>
<th class="text-center">Date </th>
<th class="text-center">Time</th>
<th class="text-center">Reason</th>
<th class="text-center">Status</th>
<th class="text-center">Action</th>
</tr>
</thead>
<tbody>
<?php
$get_data = mysqli_query($conn, "SELECT * FROM `marksheet_veri_req` order by col_id DESC");
$n = 1;
while ($f = mysqli_fetch_assoc($get_data)) {
if ($f['status'] == 'Verified') {
$a = " <a class='dropdown-item' href='#' onclick=verify_marksheet($f[col_id])><i class='fas fa-times text-primary'></i> Unverify</a>";
} else {
$a = " <a class='dropdown-item' href='#' onclick=verify_marksheet($f[col_id])><i class='fas fa-check text-primary'></i> Verify</a>";
}
echo "
<tr>
<td class='text-center'>$f[name]</td>
<td class='text-center'>$f[mobile]</td>
<td class='text-center'>$f[email]</td>
<td class='text-center'>$f[srno]</td>
<td class='text-center'>
<img src='../Files/certi_verification/$f[file]' class='pro-pic table-pro-pic'>
</td>
<td class='text-center'>$f[date]</td>
<td class='text-center'>$f[time]</td>
<td class='text-center'>$f[reason]</td>
<td class='text-center'>$f[status]</td>
<td class='text-center'>
<div class='dropdown no-arrow'>
<a class='dropdown-toggle' href='#' role='button' id='dropdownMenuLink' data-toggle='dropdown' aria-haspopup='true' aria-expanded='false'>
<i class='fas fa-ellipsis-v fa-sm fa-fw text-gray-400'></i>
</a>
<div class='dropdown-menu dropdown-menu-right shadow animated--fade-in' aria-labelledby='dropdownMenuLink'>
<div class='dropdown-header'>Action</div>
$a
</div>
</div>
</td>
</tr>
";
$n++;
}
?>
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>
<?php require('Common/Footer.php') ?>
</body>
</html>
