/home3/vehiclea/public_html/admin-vishnudentalclinic-com/appoinment_report.php
<?php
session_start();
$_SESSION['active'] = 'appoinmentReport';
include('include/header.php');
$select_appoinment = select_appoinment();
if(!empty($_GET['delid']))
{
$delete = executework("delete from appoinment_report where id = '".$_GET['delid']."'");
redirect("appoinment_report.php?delete=1");
}
?>
<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>APPOINMENTS</h1>
<nav>
<ol class="breadcrumb">
<li class="breadcrumb-item"><a href="dashboard.php">Home</a></li>
<li class="breadcrumb-item">Appoinment 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">Appoinment Report</h5>
<?php
if(!empty($_GET['delete']))
{
?>
<div style="color: red;" align="center"><h4>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">Mobile</th>
<th scope="col">Email</th>
<th scope="col">Services</th>
<th scope="col">Appoinment Date</th>
<th scope="col">Time Slot</th>
</tr>
</thead>
<tbody>
<?php
$i=1;
while($row = mysqli_fetch_array($select_appoinment)){
?>
<tr>
<td><?= $i;?></td>
<td><?= $row['name']?></td>
<td><?= $row['phone']?></td>
<td><?= $row['email']?></td>
<td><?= $row['services']?></td>
<td><?= $row['app_date']?></td>
<td><?= $row['slots']?></td>
<td><a href="appoinment_report.php?delid=<?= $row['id']?>" class=""><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