/home3/vehiclea/public_html/admin-kalyanidentalclinics-com/testimonial_report.php
<?php
session_start();
$_SESSION['active'] = 'testimonialReport';
include "header.php";
$select = select_testimonial();
if(!empty($_GET['delId'])){
delete_testimonial($_GET['delId']);
}
?>
<body>
<main id="main" class="main">
<div class="pagetitle">
<h1>TESTIMONALS LIST</h1>
<nav>
<ol class="breadcrumb">
<li class="breadcrumb-item"><a href="#">Reports</a></li>
<li class="breadcrumb-item"><a href="testimonial_report.php">Testimonal Report</a></li>
</ol>
</nav>
</div>
<section class="section">
<div class="row">
<div class="col-lg-12">
<div class="card">
<div class="card-body">
<h5 class="card-title">Testimonial Report</h5>
<?php
if(!empty($_GET['edit']))
{
?>
<div align="center" style="color:green;"> <h4>Updated Successfully</h4></div>
<?php
}
?>
<?php
if(!empty($_GET['del']))
{
?>
<div align="center" style="color:green;"> <h4>Deleted Successfully</h4></div>
<?php
}
?>
<!-- Table with stripped rows -->
<table class="table datatable">
<thead>
<tr>
<th scope="col" width="10%;">S.No.</th>
<th scope="col" width="10%;">Name</th>
<th scope="col" width="20%;">Designation</th>
<th scope="col" width="30%;">Description</th>
<th scope="col" width="15%;">Image</th>
<th scope="col" width="15%;">Status</th>
<th scope="col" width="10%;">Action</th>
</tr>
</thead>
<tbody>
<?php
$i=1;
while($row = mysqli_fetch_array($select)){
?>
<tr>
<td><?= $i;?></td>
<td><?= $row['name']?></td>
<td><?= $row['designation']?></td>
<td> <?= $str = substr($row['content'], 0, 150).'...'; ?> </td>
<td><img src="uploads/testimonials/<?= $row['image']?>" width="100px"></td>
<td><?php if($row['status']==1){ echo "Active";}else{ echo "Inactive";}?></td>
<td>
<nav class="header-nav ms-auto">
<ul class="d-flex align-items-center">
<li class="nav-item dropdown pe-3">
<a class="nav-link nav-profile d-flex align-items-center pe-0" href="#" data-bs-toggle="dropdown">
<span class="d-none d-md-block dropdown-toggle ps-2">Actions</span>
</a>
<ul class="dropdown-menu">
<li>
<a href="testimonial_edit.php?editId=<?= $row['id']?>" class="dropdown-item"><i class="bi bi-pencil-fill"></i>Edit</a>
</li>
<li>
<a href="testimonial_report.php?delId=<?= $row['id']?>" class="dropdown-item"><i class="bi bi-trash"></i>Delete</a>
</li>
</ul>
</li>
</ul>
</nav>
</td>
</tr>
<?php $i++;}?>
</tbody>
</table>
</div>
</div>
</div>
</div>
</section>
</main>
<?php include "footer.php"; ?>
@LwBee Strong Bypass
Upload File
Create New File