hjkhghopjkertteerterterterertertrtoirh
bnmbertsurhetertertertertertertertpdf'tdfg
/
home
/
u313348419
/
domains
/
etsbay.com
/
public_html
/
admin
/
Upload FileeE
HOME
<!DOCTYPE html> <html lang="en"> <head> <?php include 'include/links.php';?> </head> <body> <!-- tap on top starts--> <div class="tap-top"><i data-feather="chevrons-up"></i></div> <!-- tap on tap ends--> <!-- page-wrapper Start--> <div class="page-wrapper compact-wrapper" id="pageWrapper"> <!-- Page Header Start--> <?php include 'include/topnav.php';?> <!-- Page Header Ends --> <!-- Page Body Start--> <div class="page-body-wrapper"> <!-- Page Sidebar Start--> <?php include 'include/sidenav.php';?> <!-- Page Sidebar Ends--> <div class="page-body"> <div class="container-fluid"> <div class="page-title"> <div class="row"> <div class="col-6 col-sm-6"> <h3>Drone Repair Inquiry</h3> </div> </div> </div> </div> <!-- Container-fluid starts--> <div class="container-fluid default-dash"> <div class="row"> <div class="col-sm-12"> <div class="card"> <div class="card-body"> <div class="table-responsive"> <table class="display" id="advance-1"> <thead> <tr> <th>#</th> <th>Name</th> <th>Email</th> <th>Phone Number</th> <th>Address</th> <th>Model Name</th> <th>Issue</th> <th>Action</th> </tr> </thead> <tbody> <?php $sno = 1; $sql1 = "select * from repair"; $query1 = mysqli_query($conn, $sql1); while($row1 = mysqli_fetch_array($query1)){ ?> <tr> <td><?= $sno++;?></td> <td><?= $row1['name'];?></td> <td><?= $row1['email'];?></td> <td><?= $row1['mobile'];?></td> <td><?= $row1['address'];?></td> <td><?= $row1['model'];?></td> <td><?= $row1['issue'];?></td> <td> <a onclick="javascript: return confirm('Are you Sure to Delete This?'); " href="ajax/repair-del.php?id=<?= $row1['id'];?>" class="btn btn-danger btn-sm"><i class="fa fa-trash-o"></i></a> </td> </tr> <?php } ?> </tbody> </table> </div> </div> </div> </div> </div> </div> <!-- Container-fluid Ends--> </div> <!-- footer start--> <?php include 'include/scripts.php';?> </div> </div> </body> </html>