|
Server : LiteSpeed System : Linux terra.hostitbro.com 5.14.0-611.54.3.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Thu May 7 16:31:24 EDT 2026 x86_64 User : outerorb ( 1091) PHP Version : 8.1.34 Disable Function : mail Directory : /home2/outerorb/dev.outerorbittech.com/oot/ | |
|
Path: /home2/outerorb/dev.outerorbittech.com/oot/market.php
Size: 4.83 KB
Permissions: 0644
<?php
include_once("include/main.inc.php");
$admin_res = getAdminDetails();
$page_metatitle = 'Market Area - ' . COMPANY;
$page_metakey = 'Market Area - ' . COMPANY;
$page_metadesc = 'Market Area - ' . COMPANY;
?>
<!DOCTYPE html>
<html lang="en">
<head>
<?php include 'app_top.php'; ?>
</head>
<body>
<?php include 'app_header.php'; ?>
<!-- Banner Section -->
<section class="heading_banner"
style="background-image: url(<?=theme_url;?>img/market-banner.jpg)">
<div id="particles-js"></div>
<div class="container">
<div class="row">
<div class="col-xxl-12 col-xl-12 col-lg-12 col-md-12 col-sm-12 col-12 text-center">
<h1 class="cat_title">Market Area</h1>
<div class="clearfix"></div>
</div>
</div>
</div>
</section>
<!-- Breadcrumb Section -->
<div class="inner_breadcrumb hidden_xs">
<div class="container">
<div class="row">
<div class="col-12">
<ul class="breadcrumb">
<li><a href="<?=site_url;?>" title="Home">Home</a></li>
<li class="active">Market Area</li>
</ul>
</div>
</div>
</div>
</div>
<style>
.market-sec {
padding-top: 20px;
padding-bottom: 30px;
font-family: var(--font-black);
}
.market-sec h1,
.market-sec .market-head,
.market-sec h3 {
font-size: 20px;
color: var(--surface-color);
line-height: 26px;
margin: 20px 0 15px;
font-weight: 500;
}
.main-tt {
font-weight: 700;
color: var(--surface-color);
text-align: center;
position: relative; /* before element ke liye position relative */
}
.main-tt::before {
content: "";
position: absolute;
left: 50%;
bottom: -10px; /* text ke thoda niche */
transform: translateX(-50%);
width: 70px; /* underline ki length */
height: 3px; /* underline ki thickness */
background-color: var(--accent-color);
border-radius: 2px;
}
.market-sec h2,
.market-sec h3 {
font-size: 24px;
font-weight: 700;
}
.market-sec .market-bx {
padding: 10px 12px;
background-color: #E8E8E8;
color: var(--font-black);
font-size: 14px;
transition: 0.2s ease-in-out;
}
.market-sec .market-bx:hover {
background-color: var(--surface-color);
color: white;
}
</style>
<div class="market-sec">
<div class="container">
<h2 class="main-tt">Location We Serve</h2>
<!-- <div class="row g-2 row-cols-2 row-cols-md-4 row-cols-md-5">
<div class="col">
<a href="javascript:void()" title="India" class="market-bx d-block">India</a>
</div>
</div> -->
<div class="market-head">States of India</div>
<div class="row g-2 row-cols-2 row-cols-md-4 row-cols-md-5">
<?php
$sql_locsss=mysqli_query($GLOBALS['dbconn'],"select locationName, parentID, locationID,locationurl from location_tbl where parentID='1' and status='Y' order by locationName asc");
while($res_locsss=mysqli_fetch_array($sql_locsss)) { ?>
<div class="col">
<a href="<?=site_url;?>/<?=strtolower($res_locsss['locationurl']); ?>/" title="<?=$res_locsss['locationName'];?>"
class="market-bx d-block"><?= $res_locsss['locationName'];?></a>
</div>
<?php };?>
</div>
<?php
$sql_loccc=mysqli_query($GLOBALS['dbconn'],"select locationName, parentID, locationID,locationurl from location_tbl where parentID ='1' order by locationName asc");
while($res_loccc=mysqli_fetch_array($sql_loccc))
{
$locationID=$res_loccc['locationID'];
$sql_loc1=mysqli_query($GLOBALS['dbconn'],"select locationName, parentID, locationID,locationurl from location_tbl where parentID ='$locationID' and status='Y' order by locationName asc");
if (mysqli_num_rows($sql_loc1) > 0)
{
?>
<div class="market-head">Cities of <?php echo $res_loccc['locationName']; ?></div>
<div class="row g-2 row-cols-2 row-cols-md-4 row-cols-md-5">
<?php while($res_locfinal=mysqli_fetch_array($sql_loc1)) { ?>
<div class="col">
<a href="<?=site_url;?>/<?=strtolower($res_locfinal['locationurl']); ?>/" title="<?= $res_locfinal['locationName']; ?>"
class="market-bx d-block"><?= $res_locfinal['locationName']; ?></a>
</div>
<?php };?>
</div>
<?php } };?>
</div>
</div>
<?php include 'app_footer.php'; ?>
<?php include 'app_bottom.php'; ?>
</body>
</html>