Server IP : 103.53.40.154 / Your IP : 3.144.40.216 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/agkeymaker.in/ |
[ 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.0"> <title>All Locations Covered By N.S Home Appliance Services</title> <meta name="description" content="All Locations Covered By Guddu Guest House"> <?php include 'top-links.php';?> </head> <body> <div class="page-wrapper"> <?php include "top-header.php" ?> <?php include "header.php" ?> <div class="inner-banner"> <div class="container"> <h3></h3> <ul class="breadcumb"> <li><a href="<?php echo $wspath?>">Home</a></li> <li><span class="sep"><i class="fa fa-angle-right"></i></span></li> <li><span>All Locations</span></li> </ul> </div> </div> <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> </section> <?php include "contact-footer-banner.php" ?> </div><!-- /.page-wrapper --> <?php include "footer.php" ?> </body> </html>