| Server IP : 103.234.187.230 / Your IP : 216.73.216.216 Web Server : Apache System : Linux lserver42043-ind.megavelocity.net 3.10.0-1160.108.1.el7.x86_64 #1 SMP Thu Jan 25 16:17:31 UTC 2024 x86_64 User : apache ( 48) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /var/www/html/rsdgroup/ |
Upload File : |
<?php
include_once("conf/settings.php");
include_once("conf/func.php");
?>
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>RSD</title>
<link rel="stylesheet" href="css/style.css">
<script type="text/javascript" src="js/jquery-1.4.4.min.js"></script>
<!--[if lt IE 9]>
<script src="js/html5.js"></script>
<![endif]-->
</head>
<body>
<!--header start here-->
<?php include_once("inc/header.php"); ?>
<!--header end here-->
<!--section start here-->
<section>
<div class="braedcrumb"><a href="<?php echo @$baseurl; ?>">Home</a> > <span>SiteMap</span></div>
<div class="ourPro">
<h3>SiteMap</h3>
<ul class="sitemapul">
<li><a href="<?php echo @$baseurl; ?>">Home</a></li>
<li><a href="<?php echo @$baseurl; ?>about-us.html">About Us</a>
<?php
$menu_list = getDropDown(2);
//echo "<pre>"; print_r($menu_list);die;
if(count($menu_list)>0) {
?>
<ul>
<?php
foreach($menu_list as $menu)
{
if($menu['linkType'] == "desc")
{
$url = @$baseurl.$menu['pageKey'].".html";
$target = "";
}
else{
$url = $menu['externalLink'];
$target = "target='_blank'";
}
?>
<li><a href="<?php echo $url; ?>" <?php echo $target; ?>><?php echo $menu['staticTitle'];?></a></li>
<?php } ?>
<?php
if($menu['thirdlb_menu_count'] >0) {
?>
<ul>
<?php
foreach($menu['thirdlb_menu_arr'] as $thirdlb_menu)
{
if($thirdlb_menu['linkType'] == "desc")
{
$third_url = @$baseurl.$thirdlb_menu['pageKey'].".html";
$third_target = "";
}
else{
$third_url = $thirdlb_menu['externalLink'];
$third_target = "target='_blank'";
}
?>
<li><a href="<?php echo $third_url; ?>" <?php echo $third_target; ?>><?php echo $thirdlb_menu['staticTitle'];?></a></li>
<?php } ?>
</ul>
<?php } ?>
</ul>
<?php } ?>
</li>
<!--<li><a href="#">PRODUCTS</a></li>-->
<!--<li><a href="#">MPD</a></li>-->
<li><a href="<?php echo @$baseurl; ?>distributor_form.html">B2B</a>
<ul>
<li><a href="<?php echo @$baseurl; ?>distributor_form.html">Distribution Form</a></li>
<li><a href="<?php echo @$baseurl; ?>customer_complaint.html">Customer Feedback</a></li>
</ul>
</li>
<li><a href="<?php echo @$baseurl; ?>research-development.html">R & D</a></li>
<li><a href="<?php echo @$baseurl; ?>media_images.html">Media</a>
<ul>
<li><a href="<?php echo @$baseurl; ?>media_images.html">Images</a></li>
<li><a href="<?php echo @$baseurl; ?>media_video.html">Video</a></li>
</ul>
</li>
<li><a href="<?php echo @$baseurl; ?>news.html">What's New</a>
<ul>
<li><a href="<?php echo @$baseurl; ?>news.html">News</a></li>
<li><a href="<?php echo @$baseurl; ?>events.html">Events</a></li>
<li><a href="<?php echo @$baseurl; ?>downloads.html">Downloads</a></li>
</ul>
</li>
<li><a href="<?php echo @$baseurl; ?>recipes.html">Recipes</a></li>
<li><a href="<?php echo @$baseurl; ?>careers.html">Careers</a></li>
<!-- <li><a href="#">Farmers Desk</a></li>-->
<li><a href="<?php echo @$baseurl; ?>testimonials.html">Testimonials</a></li>
<li><a href="<?php echo @$baseurl; ?>certification.html">Our Certifications</a></li>
<li><a href="<?php echo @$baseurl; ?>privacy-policy.html">Privacy Policy</a></li>
<li><a href="<?php echo @$baseurl; ?>contact-us.html">Contact Us</a></li>
<li><a href="<?php echo @$baseurl; ?>sitemap.html">Sitemap</a></li>
</ul>
</div>
<!--footer top start here-->
<?php include_once("inc/footer-top.php"); ?>
<!--footer top end here-->
</section>
<!--section end here-->
<!--footer start here-->
<?php include_once("inc/footer.php"); ?>
<!--footer end here-->
</body>
</html>