HOME


sh-3ll 1.0
DIR:/chroot/home/laughingplants/laughingplants.com/html/
Upload File :
Current File : /chroot/home/laughingplants/laughingplants.com/html/sitemap.php
<!DOCTYPE html> <?php include 'config.php'; ?>
<html class="no-js">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Laughing Plants - Sitemap</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="all,follow">
<link rel="stylesheet" href="css/font-awesome.min.css">
<link rel="stylesheet" href="css/bootstrap.css">
<link rel="stylesheet" href="css/innerpage.css">
<link rel="stylesheet" href="css/white-header.css">
<link rel='stylesheet' href='css/prettyPhoto.css' type='text/css' media='all' />
<link rel='stylesheet' href='css/owl.carousel.css' type='text/css' media='all'/>
<link rel='stylesheet' href='css/owl.theme.css' type='text/css' media='all'/>
<link rel='stylesheet' href='css/custom1.css' type='text/css' media='all'/>
<link rel="stylesheet" href='css/magnific-popup.css' type='text/css' media='all' />
<link rel='stylesheet' href='css/animate.css' type='text/css' media='all' />
<link href="https://fonts.googleapis.com/css?family=Lato:300,400,700" rel="stylesheet">
<link rel="shortcut icon" href="images/leaf.png">
<!-- Tweaks for older IEs--><!--[if lt IE 9]>
        <script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
        <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script><![endif]-->
</head>
<body>
	<header>
	  <div class="top_div"></div>
		<div class="container">
		   <nav class="navbar navbar-default">
	        <div class="container-fluid">
	          <div class="navbar-header">
	            <button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">
		              <span class="sr-only">Toggle navigation</span>
		              <span class="icon-bar"></span>
		              <span class="icon-bar"></span>
		              <span class="icon-bar"></span>
		         </button>
	            <a class="navbar-brand" href="index.php"><img class="img-responsive" src="images/logo-white.png" alt=""></a>
	          </div>
	          <div id="navbar" class="navbar-collapse collapse" aria-expanded="false">
	            <ul class="nav navbar-nav navbar-right">
	             	<li><a href="index.php">Home</a></li>
	              	<li><a href="plant-finder.php">Plant Finder</a></li>
	              	<li><a href="about-us.php">About Us</a></li>
                        <li><a href="corporate.php">Corporate</a></li>
	              	<li><a href="community.php">Community</a></li>
	              	<li><a href="contact.php">Contact Us</a></li>
	            </ul>
	          </div><!--/.nav-collapse -->
	        </div><!--/.container-fluid -->
	      </nav>
		</div>
	</header>
	
	<section id="menu_transparent">
		<div class="container">
			<div class="col-md-12 banner_top_10" >
				<div class="row">
					<div class="col-md-7">
						<h2 style="margin-top: 20%;">Sitemap</h2>
						<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.</p>
					</div>
					
					<div class="col-md-5 sitemap_right_img">
						
					</div>
				</div>
			</div>
		</div>
		
		<div class="sitemap_right_img">
			<img src="images/site_right.png" class="img-responsive">
		</div>
	</section>
	
	
	<section id="sitemap">
		<div class="container">
			<div class="col-md-12">
<ul>
<li><a href="index.php"><i class="fa fa-arrow-circle-o-right" aria-hidden="true"></i> Home</a></li>
<li><a href="plant-finder.php"><i class="fa fa-arrow-circle-o-right" aria-hidden="true"></i> Plant Finder</a></li>
<li><a href="about-us.php"><i class="fa fa-arrow-circle-o-right" aria-hidden="true"></i> About Us</a></li>
<li><a href="corporate.php"><i class="fa fa-arrow-circle-o-right" aria-hidden="true"></i> Corporate</a></li>
<li><a href="community.php"><i class="fa fa-arrow-circle-o-right" aria-hidden="true"></i> Community</a></li>
<li><a href="contact.php"><i class="fa fa-arrow-circle-o-right" aria-hidden="true"></i> Contact Us</a></li>
<li><a href="terms-and-conditions.php"><i class="fa fa-arrow-circle-o-right" aria-hidden="true"></i> Terms and Condition</a></li>
<li><a href="privacy-policy.php"><i class="fa fa-arrow-circle-o-right" aria-hidden="true"></i> Privacy Policy</a></li>
</ul>
				<div class="row">
					<div class="col-md-3 col-sm-6">
						<h4>Air Purifiers</h4>
						<ul>
                                                  <?php
$air_purifier = 1;
$search_air_purifier= $con->prepare("SELECT * FROM tbl_plants WHERE pl_category=:pl_category"); 
      
	  $search_air_purifier->bindParam(":pl_category", $air_purifier);  
	  $search_air_purifier->execute();
          while($fetch_air_purifier = $search_air_purifier->fetch(PDO::FETCH_ASSOC))
         {
         ?>

							<li><a href="plants.php?id=<?php echo $fetch_air_purifier['id']; ?>"><i class="fa fa-arrow-circle-o-right" aria-hidden="true"></i> <?php echo $fetch_air_purifier['pl_name']; ?></a></li>
         <?php
         } ?>
							 
						</ul>
					</div>
					
					<div class="col-md-3 col-sm-6">
						<h4>Carefree Plants</h4>
						<ul>
                                                  <?php
$carefree = 2;
$search_carefree = $con->prepare("SELECT * FROM tbl_plants WHERE pl_category=:pl_category"); 
      
	  $search_carefree ->bindParam(":pl_category", $carefree );  
	  $search_carefree ->execute();
          while($fetch_carefree = $search_carefree->fetch(PDO::FETCH_ASSOC))
         {
         ?>

							<li><a href="plants.php?id=<?php echo $fetch_carefree['id']; ?>"><i class="fa fa-arrow-circle-o-right" aria-hidden="true"></i> <?php echo $fetch_carefree['pl_name']; ?></a></li>
         <?php
         } ?>
							 
						</ul>
					</div>
					
					<div class="col-md-3 col-sm-6">
						<h4>Charming Desert Plants</h4>
						<ul>
                                                  <?php
$charming= 3;
$search_charming = $con->prepare("SELECT * FROM tbl_plants WHERE pl_category=:pl_category"); 
      
	  $search_charming ->bindParam(":pl_category", $charming);  
	  $search_charming ->execute();
          while($fetch_charming = $search_charming ->fetch(PDO::FETCH_ASSOC))
         {
         ?>

							<li><a href="plants.php?id=<?php echo $fetch_charming['id']; ?>"><i class="fa fa-arrow-circle-o-right" aria-hidden="true"></i> <?php echo $fetch_charming['pl_name']; ?></a></li>
         <?php
         } ?>
							 
						</ul>
					</div>

                                        <div class="col-md-3 col-sm-6" style="display: none;">
						<h4>Other</h4>
						<ul>
                                                  <?php
$other= 4;
$search_other = $con->prepare("SELECT * FROM tbl_plants WHERE pl_category=:pl_category"); 
      
	  $search_other ->bindParam(":pl_category", $other);  
	  $search_other ->execute();
          while($fetch_other = $search_other ->fetch(PDO::FETCH_ASSOC))
         {
         ?>

							<li><a href="plants.php?id=<?php echo $fetch_other['id']; ?>"><i class="fa fa-arrow-circle-o-right" aria-hidden="true"></i> <?php echo $fetch_other['pl_name']; ?></a></li>
         <?php
         } ?>
							 
						</ul>
					</div>  
				</div>
			</div>
		</div>
	</section>
	
<?php include 'footer.php';?>