Server IP : 111.118.215.189 / Your IP : 18.189.145.188 Web Server : Apache System : Linux md-in-83.webhostbox.net 4.19.286-203.ELK.el7.x86_64 #1 SMP Wed Jun 14 04:33:55 CDT 2023 x86_64 User : a1673wkz ( 2475) PHP Version : 8.2.25 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON Directory (0755) : /home1/a1673wkz/propstonerealty.com/Admin/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
<?php session_start(); if(empty($_SESSION['username'])) { echo '<script>window.location.href="login.php"</script>'; } ?> <!DOCTYPE html> <html> <body> <?php //header link include("header_link.php"); //database file link include("config.php"); ?> <!-- Main Wrapper --> <div class="main-wrapper"> <!-- Page Wrapper --> <div class="page-wrapper"> <!-- Page Content --> <div class="content container-fluid"> <!-- Page Header --> <div class="page-header"> <div class="row align-items-center"> <div class="col"> <h3 class="page-title">Brochure</h3> <ul class="breadcrumb"> <li class="breadcrumb-item"><a href="index.html">Dashboard</a></li> <li class="breadcrumb-item active">Brochure</li> </ul> </div> </div> </div> <!-- /Page Header --> <script src="js/jquery-3.2.1.min.js"></script> <div class="row"> <div class="col-md-12"> <div class="table-responsive"> <table class="table table-striped datatable custom-table mb-0" id="banner-load"> <thead> <tr> <th>#</th> <th>Name</th> <th>Phone</th> <th>Email</th> </tr> </thead> <tbody> <?php $cnt='0'; $selct=$obj->fetch("SELECT * FROM bro_download ORDER BY id DESC"); foreach($selct as $val) { $cnt++; ?> <tr class="holiday-upcoming"> <td><?php echo $cnt; ?></td> <td><?php echo $val['name']; ?></td> <td><?php echo $val['phone'] ?></td> <td><?php echo $val['email'] ?></td> </tr> <?php } ?> </tbody> </table> </div> </div> </div> </div> <!-- /Page Content --> <?php // header include("header.php"); ?> </div> </div> <?php //footer link include("footer_link.php"); //footer include("footer.php"); ?> </body> </html>