Server IP : 103.53.40.154 / Your IP : 18.222.78.65 Web Server : Apache System : Linux md-in-35.webhostbox.net 4.19.286-203.ELK.el7.x86_64 #1 SMP Wed Jun 14 04:33:55 CDT 2023 x86_64 User : ppcad7no ( 715) PHP Version : 8.2.25 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON Directory (0750) : /home2/ppcad7no/thegloriousadventure.com/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
<?php include_once('admin/config.php'); ?> <!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <?php include "links.php";?> <title><?php echo $dataabout["site_pages_meta_title"];?></title> <meta name="description" content="<?php echo $dataabout["site_pages_meta_description"];?>"> </head> <body> <?php include "header.php";?> <div class="breadcrumb breadcrumb-style-one"> <div class="container"> <div class="col-lg-12 text-center"> <h1 class="breadcrumb-title">All <span class="lst-words">Locations</span></h1> <ul class="d-flex justify-content-center breadcrumb-items"> <li class="breadcrumb-item"><a href="<?php echo $wspath?>">Home</a></li> <li class="breadcrumb-item active">All Locations</li> </ul> </div> </div> </div> <!-- Welcome Section / Style Two --> <style> #loc { background-color: #EBE3D5; } #loc h2 span { color: #ea622b; } .loc-inner ul li { list-style: none; margin-bottom: 8px; } .loc-inner ul li a { text-decoration: none; color: #141414; } .loc-inner ul li:hover { transform: translateX(8px); transition: 0.4s ease-in-out; } .loc-inner ul li:hover a { color: #ea622b; } </style> <section id="loc" style="padding-bottom:80px;"> <h2 class="text-center py-5">Area <span> We Covered</span></h2> <div class="container"> <div class="row" id="locationContainer"> <?php $sqlloc = "SELECT * FROM `tbl_location`"; $runloc = mysqli_query($db, $sqlloc) or die("Query Not run"); while ($dataloc = mysqli_fetch_assoc($runloc)) { ?> <div class="col-lg-3 text-start"> <div class="loc-inner"> <ul> <li><a href="<?php echo $wspath ?><?php echo $dataloc['loc_slug']; ?>"><i class="fa fa-caret-right" aria-hidden="true"></i> <?php echo $dataloc['loc_name'] ?></a></li> </ul> </div> </div> <?php } ?> </div> <!--<div class="text-center mt-3">--> <!-- <button id="readMoreBtn" class="btn btn-primary mt-3">View More Location</button>--> <!-- <a href="all-locatins.php"><button class="btn btn-primary mt-3">View All Location</button></a>--> <!--</div>--> <h2 class="text-center py-5"></h2> </div> <!-- End Welcome Section --> <?php include "inner-footer.php";?> <?php include "footer.php" ?> </body> </html>