Server IP : 103.53.40.154 / Your IP : 3.144.114.8 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 (0755) : /home2/ppcad7no/lizatilessolution.com/market-place/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
<?php $base_url = "https://craftmediahub.com/lizatilessolution/"; $url2 = $base_url.'products/locationlist'; $slug = @$_REQUEST['slug']; $slug = ''; $ch = curl_init($url2); curl_setopt($ch, CURLOPT_POST, true); curl_setopt($ch, CURLOPT_POSTFIELDS, array("slug" => $slug)); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); $result = curl_exec($ch); curl_close($ch); $location_data = json_decode($result, true); $url3 = $base_url.'products/mainwebsitedata'; $ch = curl_init($url3); curl_setopt($ch, CURLOPT_POST, true); curl_setopt($ch, CURLOPT_POSTFIELDS, array("slug" => $slug)); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); $result = curl_exec($ch); curl_close($ch); $websitedata = json_decode($result, true); $google_analytics = $websitedata['google_analytics']; $extra_js = $websitedata['extra_js']; $sitemappage = $websitedata['sitemappage']; $meta_title = $sitemappage['Sitepage']['meta_title']; $meta_keyword = $sitemappage['Sitepage']['meta_keyword']; $meta_desc = $sitemappage['Sitepage']['meta_desc']; $url3 = $base_url.'products/product_list'; $ch = curl_init($url3); curl_setopt($ch, CURLOPT_POST, true); curl_setopt($ch, CURLOPT_POSTFIELDS, array("slug" => $slug)); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); $result = curl_exec($ch); curl_close($ch); $products = json_decode($result, true); ?> <?php include('innerheader.php');?> <!-- page title --> <div class="page-title"> <div class="container-fluid"> <div class="row"> <div class="inner-title"> <div class="overlay-image"></div> <div class="banner-title"> <div class="page-title-heading"> Sitemap </div> <div class="page-title-content link-style6"> <span><a class="home" href="index.html">Home</a></span><span class="page-title-content-inner">Sitemap</span> </div> </div> </div> </div> </div> </div> <section class="flat-service-details"> <div class="container"> <div class="row"> <div class="col-md-12"> <div class="themesflat-spacer clearfix" data-desktop="117" data-mobile="60" data-smobile="60"></div> </div> <div class="col-md-12"> <ul> <li><a href="index.html">Home</a> </li> <li><a href="about.html">About</a> </li> <li><a href="products.html">Products</a> </li> <li><a href="our-presence.html">Our Presence</a> </li> <li><a href="contact.html">Contact</a> </li> <li><a href="sitemap.html">Sitemap</a> </li> <ul> <?php foreach($products as $key=>$val) { ?> <li><a href="<?php echo $key;?>.html"><?php echo $val;?></a></li> <?php } ?> </ul> </div> <div class="col-md-12"> <div class="themesflat-spacer clearfix" data-desktop="117" data-mobile="60" data-smobile="60"></div> </div> <?php /* <div class="col-md-12"> <ul> <li class="col-md-3"> <a href="exporters-category.html" class="categorylist" title="Exporters">Exporters Category</a> </li> <li class="col-md-3"> <a href="manufacturers-category.html" class="categorylist" title="Manufacturers"> Manufacturers Category</a> </li> <li class="col-md-3"> <a href="suppliers-category.html" class="categorylist" title="Suppliers">Suppliers Category</a> </li> </ul> </div> <div class="col-md-12"> <ul> <?php foreach($location_data as $key=>$val) { ?> <li class="active col-md-3"><a href="<?php echo $key;?>/"><?php echo $val;?></a></li> <?php } ?> </ul> </div> */ ?> </div> </div> </section> <!-- / Our service --> <?php include('footer.php');?>