Server IP : 153.92.220.142 / Your IP : 216.73.216.29 Web Server : LiteSpeed System : Linux nl-srv-web513.main-hosting.eu 5.14.0-503.34.1.el9_5.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Mar 27 06:00:50 EDT 2025 x86_64 User : u444427800 ( 444427800) PHP Version : 8.1.32 Disable Function : system, exec, shell_exec, passthru, mysql_list_dbs, ini_alter, dl, symlink, link, chgrp, leak, popen, apache_child_terminate, virtual, mb_send_mail MySQL : OFF | cURL : ON | WGET : ON | Perl : OFF | Python : OFF Directory (0755) : /home/u444427800/domains/professorchaiwala.com/public_html/../../dpschamps.com/public_html/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
<?php session_start(); if (!isset($_SESSION['email'])) { header("location:login.php"); } ?> <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Admin Panel</title> <link rel="icon" type="image/png" href="images/logo.png" sizes="20X20"> <link rel="stylesheet" href="css/slick.min.css"> <link rel="stylesheet" href="css/reset.css"> <link rel="stylesheet" href="css/style.css"> <link rel="stylesheet" href="//cdn.datatables.net/1.12.1/css/jquery.dataTables.min.css"> <!-- cdn link --> <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@3.3.7/dist/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous"> <!-- Optional theme --> <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@3.3.7/dist/css/bootstrap-theme.min.css" integrity="sha384-rHyoN1iRsVXV4nD0JutlnGaslCJuC7uwjduW9SVrLvRYooPp2bWYgmgJQIXwl/Sp" crossorigin="anonymous"> <!-- cdn link end --> </head> <body> <!-- popupimage --> <!-- popupimage --> <div class="topbar"> <div class="container"> <a href="logout.php"><button class="btn btn-primary">Log Out</button></a> <a href="export.php"><button class="btn btn-primary">Export</button></a> </div> </div> <!-- data fetch section --> <div class="container" style="padding: 120px 0px"> <div class="row d-flex justify-content-center"> <div class="col-sm-12 col-12"> <div class=""> <table class="table table-primary py-4" id="datatable" > <thead class="bg-info text-white"> <tr> <th class="py-3 text-white">Sr No.</th> <th class="py-3 text-white">Name</th> <th class="py-3 text-white">Mobile</th> <th class="py-3 text-white">Email</th> <th class="py-3 text-white">Address</th> </tr> </thead> <tbody> <?php include "config.php"; // $selectquery = "select * from pestdata "; $selectquery="SELECT * FROM `entry_data` " ; $query = mysqli_query($conn,$selectquery); while($result=mysqli_fetch_assoc($query)){ ?> <tr> <td scope="row"> <?php echo $result['id']; ?> </td> <td scope="row"> <?php echo $result['name']; ?> </td> <td scope="row"> <?php echo $result['mobile']; ?> </td> <td scope="row"> <?php echo $result['email']; ?> </td> <td scope="row"> <?php echo $result['address']; ?> </td> </tr> <?php } ?> </tbody> </table> </div> </div> </div> </div> <!-- data fetch section --> <!-- pricing-section --> <!-- pricing-section --> <!-- footer-section --> <!-- footer-section --> <script src="js/jquery.min.js"></script> <script src="js/slick.min.js"></script> <script src="//cdn.datatables.net/1.12.1/js/jquery.dataTables.min.js"></script> <script src="js/main.js"></script> <script> $(document).ready(function () { setTimeout(function () { $('#myFunction').css('display', 'block'); }, 2000) }); $('.submitId').click(function () { $('#myFunction').css('display', 'none'); }) </script> <script> $(document).ready( function () { $('#datatable').DataTable(); } ); </script> </body> </html>