/home3/vehiclea/public_html/admin-kalyanidentalclinics-com/appoinment_report.php
<?php
session_start();
$_SESSION['active'] = 'appointmentReport';
include "header.php";
$select_appointment = select_appointment();
if(!empty($_GET['delId'])){
delete_appointment($_GET['delId']);
}
?>
<body>
<main id="main" class="main">
<div class="pagetitle">
<h1>APPOINTMENT LIST</h1>
<nav>
<ol class="breadcrumb">
<li class="breadcrumb-item"><a href="#">Reports</a></li>
<li class="breadcrumb-item"><a href="appointment_report.php">Appointment 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">Appointment Report</h5>
<?php
if(!empty($_GET['del']))
{
?>
<div align="center" style="color:green;"> <h4>Deleted Successfully</h4></div>
<?php
}
?>
<table class="table datatable">
<thead>
<tr>
<th scope="col" width="15%;">S.No.</th>
<th scope="col" width="10%;">Name</th>
<th scope="col" width="10%;">Mobile</th>
<th scope="col" width="30%;">Email</th>
<th scope="col" width="10%;">Services</th>
<th scope="col" width="30%;">Appointment Date</th>
<th scope="col" width="15%;">Time Slot</th>
<th scope="col" width="10%;">Action</th>
</tr>
</thead>
<tbody>
<?php
$i=1;
while($row = mysqli_fetch_array($select_appointment)){
?>
<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>
<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="appointment_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