<?php
include './class/include.php';
if (isset($_GET['id'])) {
$id = $_GET['id'];
$PRODUCT = new Product(NUll);
$PRODUCT_TYPES = new ProductType($id);
}
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="keywords" content="jewellery shops in sri lanka, jewellery shops in galle, wedding jewellery, engagement rings, jewellery design, gem products in sri lanka, forbes gems and jewellery, best wedding jewellery in galle, blue sapphire, necklace, bangles, ear studs, pendant, diamond rings">
<meta name="description" content="Forbes Gems & Jewellery is committed to providing our customers the best value, quality, service and selection of Sapphires, Diamonds, Emeralds, Pearls and other gemstone jewellery in Sri Lanka.">
<title>Forbes Gems & Jewellers - Product </title>
<!--Favicons-->
<link rel="icon" type="image/png" sizes="32x32" href="favicon/favicon-32x32.png">
<link rel="manifest" href="http://www.veepixel.com/tf/html/d-shine/favicon/manifest.json">
<meta name="msapplication-TileColor" content="#ffffff">
<meta name="theme-color" content="#ffffff">
<!--Bootstrap and Other Vendors-->
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/bootstrap-theme.min.css">
<link rel="stylesheet" href="css/fontawesome-all.min.css">
<link rel="stylesheet" href="../../../../www.veepixel.com/tf/html/d-shine/vendors/owl.carousel/css/owl.carousel.html">
<link rel="stylesheet" type="text/css" href="vendors/flexslider/flexslider.css" media="screen" />
<link rel="stylesheet" type="text/css" href="vendors/bootstrap-rating/bootstrap-rating.css" media="screen" />
<!--Fonts-->
<link href="https://fonts.googleapis.com/css?family=PT+Sans:400,700" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Questrial" rel="stylesheet">
<!--Mechanic Styles-->
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/responsive.css">
<link href="css/custom.css" rel="stylesheet" type="text/css"/>
</head>
<body>
<a href="#" id="back-to-top" title="Back to top">↑</a>
<?php include './header.php'; ?><!--Header-->
<section id="breadcrumbRow" class="row bnner">
<h2 class="banner-text"><?php echo $PRODUCT_TYPES->name ?></h2>
<div class="row pageTitle m0">
<div class="container">
<h4 class="fleft"></h4>
<ul class="breadcrumb fright">
<li><a href="index.php">home</a></li>
<li class="active">product</li>
</ul>
</div>
</div>
</section>
<section class="row contentRowPad greybg">
<div class="container">
<div class="row">
<?php
foreach ($PRODUCT->getProductsById($id) as $product) {
?>
<div class="col-sm-3 product">
<div class="productInner row m0">
<div class="row m0 imgHov">
<img src="upload/product-type/product/<?php echo $product['image_name'] ?>" alt="">
</div>
<div class="row m0 proName"><a href="#"><?php echo $product['name']; ?></a></div>
</div>
</div>
<?php
}
?>
</div>
</div>
</section>
<?php include './footer.php'; ?>
<!--jQuery-->
<script src="js/jquery-2.1.3.min.js"></script>
<!--Google Maps-->
<script src="https://maps.googleapis.com/maps/api/js"></script>
<!--Bootstrap JS-->
<script src="js/bootstrap.min.js"></script>
<!--Owl Carousel-->
<script src="vendors/owl.carousel/js/owl.carousel.min.js"></script>
<!--Isotope-->
<script src="vendors/isotope/isotope-custom.js"></script>
<!--FlexSlider-->
<script src="vendors/flexslider/jquery.flexslider-min.js"></script>
<!--D-shine JS-->
<script src="js/d-shine.js"></script>
</body>
</html> |