����JFIF��H�H����Exif��MM�*���� ��3����V�����3������3�(��������������������3�����
Server IP : 162.0.232.25 / Your IP : 18.222.96.135 Web Server : LiteSpeed System : Linux premium276.web-hosting.com 4.18.0-513.11.1.lve.el8.x86_64 #1 SMP Thu Jan 18 16:21:02 UTC 2024 x86_64 User : kwacuqig ( 988) PHP Version : 8.2.26 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/kwacuqig/voltify.malawisounds.com/ |
Upload File : |
<?php include './head.php'; include './header.php'; include './navbar.php'; ?> <!-- Breadcomb area Start--> <div class="breadcomb-area"> <div class="container-fluid"> <div class="row"> <div class="col-lg-12 col-md-12 col-sm-12 col-xs-12"> <div class="breadcomb-list"> <div class="row"> <div class="col-lg-6 col-md-6 col-sm-6 col-xs-12"> <div class="breadcomb-wp"> <div class="breadcomb-icon"> <i class="notika-icon notika-windows"></i> </div> <div class="breadcomb-ctn"> <h2>Customer Table</h2> <p>Welcome to Voltify Customer List</p> </div> </div> </div> </div> </div> </div> </div> </div> </div> <!-- Breadcomb area End--> <!-- Data Table area Start--> <div class="data-table-area"> <div class="container-fluid"> <div class="row"> <div class="col-lg-12 col-md-12 col-sm-12 col-xs-12"> <div class="data-table-list"> <div class="table-responsive"> <table id="data-table-basic" class="table table-striped"> <thead> <tr> <th>Name</th> <th>Meter Number</th> <th>Mobile</th> <th>Email</th> <th>Location</th> <th></th> </tr> </thead> <tbody> <?php $run = mysqli_query($conn, "SELECT * FROM `customers` ORDER BY `firstname` ASC") or die(mysqli_error($conn)); while ($row = mysqli_fetch_array($run)) { ?> <tr> <td><?php echo $row['firstname'] . ' ' . $row['surname']; ?></td> <td><?php echo $row['meter_number']; ?></td> <td><?php echo $row['mobile']; ?></td> <td><?php echo $row['email']; ?></td> <td><?php echo $row['location']; ?></td> <td> <a href="customer-edit.php?cid=<?php echo $row['cid'];?>" class="btn btn-primary"><i class="fa fa-edit"></i></a> <a href="customer-delete.php?cid=<?php echo $row['cid'];?>" onclick="return confirm('Delete <?php echo $row['firstname'].' '.$row['surname'];?>?')" class="btn btn-danger"><i class="fa fa-trash"></i></a> </td> </tr> <?php } ?> </tbody> <tfoot> <tr> <th>Name</th> <th>Meter Number</th> <th>Mobile</th> <th>Email</th> <th>Location</th> </tr> </tfoot> </table> </div> </div> </div> </div> </div> </div> <!-- Data Table area End--> <?php include './footer.php'; include './scripts.php'; ?> <script> document.querySelectorAll(".main-menu-area .nav li")[2].classList.add('active') document.querySelector(".main-menu-area .tab-content #Page").classList.add('in') document.querySelector(".main-menu-area .tab-content #Page").classList.add('active') document.querySelector("title").innerHTML="Voltify ~ Customers"; </script>