D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home3
/
encodto1
/
attraction.encodersunlimited.com
/
attadminraction
/
Filename :
quaries.php
back
Copy
<?php include('config.php'); ?> <!DOCTYPE html> <html lang="en"> <head> <?php include('style.php'); ?> </head> <body onload="startTime()"> <!-- loader starts--> <!-- loader ends--> <!-- Page Wrapper Start --> <div class="page-wrapper compact-wrapper" id="pageWrapper"> <!-- Page Header Start --> <div class="page-header"> <div class="header-wrapper row m-0"> <div class="header-logo-wrapper col-auto p-0"> <div class="logo-wrapper"> <a href="index.php"> <img class="img-fluid for-light" src="assets/images/newpclogo.png" alt="Logo"> <img class="img-fluid for-dark" src="assets/images/newpclogo.png" alt="Logo"> </a> </div> </div> <div class="left-header col-xxl-5 col-xl-6 col-md-4 col-auto box-col-6 horizontal-wrapper p-0"> <div class="left-menu-header"> <ul class="header-left"> <li> <div class="form-group w-100"> <div class="Typeahead Typeahead--twitterUsers"> <div class="u-posRelative d-flex"> <svg class="search-bg svg-color me-2"> <use href="https://admin.pixelstrap.net/crocs/assets/svg/icon-sprite.svg#fill-search"></use> </svg> <input class="demo-input py-0 Typeahead-input form-control-plaintext w-100" type="text" placeholder="Search anything..." name="q" title=""> </div> </div> </div> </li> </ul> </div> </div> <div class="nav-right col-xxl-7 col-xl-6 col-auto box-col-6 pull-right right-header p-0 ms-auto"> <ul class="nav-menus"> <li class="serchinput"> <div class="serchbox"> <svg> <use href="https://admin.pixelstrap.net/crocs/assets/svg/icon-sprite.svg#fill-search"></use> </svg> </div> <div class="form-group search-form"> <input type="text" placeholder="Search here..."> </div> </li> <li> <div class="mode"> <svg> <use href="https://admin.pixelstrap.net/crocs/assets/svg/icon-sprite.svg#fill-dark"></use> </svg> </div> </li> <li class="profile-nav onhover-dropdown p-0"> <div class="d-flex align-items-center profile-media"> <img class="b-r-10 img-40" src="assets/images/dashboard/profile.png" alt="Profile"> <div class="flex-grow-1"><span>Attraction Salon</span></div> </div> </li> </ul> </div> <!-- Templates for search results --> <script class="result-template" type="text/x-handlebars-template"> <div class="ProfileCard u-cf"> <div class="ProfileCard-avatar"> <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-airplay m-0"> <path d="M5 17H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2h-1"></path> <polygon points="12 15 17 21 7 21 12 15"></polygon> </svg> </div> <div class="ProfileCard-details"> <div class="ProfileCard-realName">{{name}}</div> </div> </div> </script> <script class="empty-template" type="text/x-handlebars-template"> <div class="EmptyMessage">Your search turned up 0 results. This most likely means the backend is down, yikes!</div> </script> </div> </div> <!-- Page Header Ends --> <!-- Page Body Start --> <div class="page-body-wrapper"> <!-- Page Sidebar Start --> <?php include('sidebar.php'); ?> <!-- Page Sidebar Ends --> <div class="page-body"> <div class="container-fluid"> <div class="page-title"> <div class="row"> <div class="col-sm-6 p-0"> <h3>Dashboard</h3> </div> </div> </div> </div> <!-- Container-fluid starts --> <div class="container-fluid default-dashboard"> <div class="row"> <div class="col-sm-12"> <div class="card"> <div class="card-body"> <div class="list-product"> <table class="table" id="project-status"> <thead> <tr> <th><span class="f-dark f-w-600">ID</span></th> <th><span class="f-dark f-w-600">Name</span></th> <th><span class="f-dark f-w-600">Phone</span></th> <th><span class="f-dark f-w-600">Email</span></th> <th><span class="f-dark f-w-600">Service</span></th> <th><span class="f-dark f-w-600">Message</span></th> </tr> </thead> <tbody class="text-dark"> <?php $query = "SELECT * FROM `getquote`"; $result = mysqli_query($conn, $query); $i = 1; while ($item = mysqli_fetch_assoc($result)) { ?> <tr> <th scope="row"><?php echo $i; ?></th> <td><?php echo htmlspecialchars($item['name']); ?></td> <td><?php echo htmlspecialchars($item['number']); ?></td> <td><?php echo htmlspecialchars($item['email']); ?></td> <td><?php echo htmlspecialchars($item['service']); ?></td> <td><?php echo htmlspecialchars($item['message']); ?></td> </tr> <?php $i++; } ?> </tbody> </table> </div> </div> </div> </div> </div> </div> <!-- Container-fluid Ends --> </div> </div> </div> <?php include('footer.php'); ?> <!-- Plugin used --> </body> </html>