hjkhghoppoopppooppoppoppoopoirh
bnmbertsurheoppopopooooooooooooooopoopopdf'tdfg
/
home
/
u964504142
/
domains
/
holyhimalayayatra.com
/
public_html
/
admin
/
Upload FileeE
HOME
<?php include('include/header.php'); include('include/sidebar.php'); ?> <!--start content--> <main class="page-content"> <!--breadcrumb--> <div class="page-breadcrumb d-none d-sm-flex align-items-center mb-3"> <div class="ps-3"> <nav aria-label="breadcrumb"> <ol class="breadcrumb mb-0 p-0"> <li class="breadcrumb-item"><a href="javascript:;"><i class="bx bx-home-alt"></i></a> </li> <li class="breadcrumb-item active" aria-current="page">Bookings List</li> </ol> </nav> </div> </div> <div class="card"> <div class="card-body"> <div class="table-responsive"> <table id="example2" class="table table-striped table-bordered"> <thead> <tr> <th>S.NO</th> <th>Name</th> <th>Email</th> <th>Contact</th> <th>No. Of people</th> <th>No. Of Days</th> <th>Pickup Date</th> <th>Service/Tour/Trekking</th> <th>Message</th> <th>Status</th> <th>Action</th> </tr> </thead> <tfoot> <tr> <th>S.NO</th> <th>Name</th> <th>Email</th> <th>Contact</th> <th>No. Of people</th> <th>No. Of Days</th> <th>Pickup Date</th> <th>Service/Tour/Trekking</th> <th>Message</th> <th>Status</th> <th>Action</th> </tr> </tfoot> <tbody> <?php $sql = $conn->query("SELECT * FROM bookings"); $i=1; while($row=$sql->fetch_assoc()){ ?> <tr> <td><?=$i++;?></td> <td><?=$row['name'];?></td> <td><?=$row['email'];?></td> <td><?=$row['phone'];?></td> <td><?=$row['no_of_people'];?></td> <td><?=$row['no_days'];?></td> <td><?=$row['pickup_date'];?></td> <td><?=$row['service'];?></td> <td><?=$row['message'];?></td> <td><?=$row['status'];?></td> <td> <button type="button" class="btn btn-primary split-bg-primary dropdown-toggle dropdown-toggle-split btn-sm" data-bs-toggle="dropdown"> Action<span class="visually-hidden">Toggle Dropdown</span> </button> <div class="dropdown-menu dropdown-menu-right dropdown-menu-lg-end"> <a class="dropdown-item" href="javascript:void[0]" onclick="del(<?=$row['id'];?>,'bookings')" >Delete</a> <a class="dropdown-item" href="javascript:void[0]" onclick="confirmed(<?=$row['id'];?>)" >Confirmed</a> <a class="dropdown-item" href="javascript:void[0]" onclick="cancel(<?=$row['id'];?>)" >Cancel</a> <a class="dropdown-item" href="invoice?id=<?=$row['id'];?>&t=bookings" target="_blank">Invoice</a> </div> </td> </tr> <?php } ?> </tbody> </table> </div> </div> </div> </main> <!--end page main--> <?php include('include/footer.php');?>