/home3/vehiclea/public_html/admin-vishnudentalclinic-com/services_report.php
<?php
session_start();
$_SESSION['active'] = 'servicesReport';
include('include/header.php');
$select = select_services();
if(!empty($_GET['delId'])){
delete_services($_GET['delId']);
}
?>
<style>
.button {
border: none;
color: white;
padding: 10px 20px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
cursor: pointer;
}
.button1 {background-color: #4CAF50;} /* Green */
.button2 {background-color: #b71c1c;} /* Blue */
</style>
<script src='https://kit.fontawesome.com/a076d05399.js' crossorigin='anonymous'></script>
<body>
<!-- ======= Header ======= -->
<!-- ======= Sidebar ======= -->
<main id="main" class="main">
<div class="pagetitle">
<h1>SERVICES</h1>
<nav>
<ol class="breadcrumb">
<li class="breadcrumb-item"><a href="dashboard.php">Home</a></li>
<li class="breadcrumb-item">Services Report</li>
</ol>
</nav>
</div><!-- End Page Title -->
<section class="section">
<div class="row">
<div class="col-lg-12">
<div class="card">
<div class="card-body">
<h5 class="card-title">Services Report</h5>
<?php
if(!empty($_GET['upd']))
{
?>
<div align="center" style="color:green;"> <h4>Data Updated Successfully</h4></div>
<?php
}
?>
<?php
if(!empty($_GET['del']))
{
?>
<div align="center" style="color:red;"> <h4>Data Deleted Successfully</h4></div>
<?php
}
?>
<!-- Table with stripped rows -->
<table class="table datatable">
<thead>
<tr>
<th scope="col">#</th>
<th scope="col">Name</th>
<th scope="col">Title</th>
<th scope="col">Description</th>
<th scope="col">Image</th>
<th scope="col">Status</th>
<th scope="col">Action</th>
</tr>
</thead>
<tbody>
<?php
$i=1;
while($row = mysqli_fetch_array($select)){
?>
<tr>
<td><?= $i;?></td>
<td><?= $row['name']?></td>
<td><?= $row['title']?></td>
<td><?= $row['content']?></td>
<td><img src="uploads/services/<?= $row['image']?>" width="50px"></td>
<td><?php if($row['status']==1){ echo "Active";}else{ echo "Inactive";}?></td>
<td>
<a href="service_edit.php?editId=<?= $row['id']?>"><button class="button button1">Edit</button></a>
<a href="services_report.php?delId=<?= $row['id']?>"><button class="button button2">Delete</button></a>
</td>
</tr>
<?php $i++;}?>
</tbody>
</table>
<!-- End Table with stripped rows -->
</div>
</div>
</div>
</div>
</section>
</main><!-- End #main -->
<!-- ======= Footer ======= -->
<?php
include('include/footer.php');
?>
@LwBee Strong Bypass
Upload File
Create New File