Server Address : 2a02:4780:a:760:0:37cc:13e2:3
Web Server : LiteSpeed
Uname : Linux uk-fast-web660.main-hosting.eu 5.14.0-570.55.1.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Tue Oct 21 05:27:51 EDT 2025 x86_64
PHP Version : 7.4.33
<?php
$latest = $contentObj -> getContent("Crafted with excellent material");
?>
<div class="product-section">
<div class="container">
<div class="row mb-5">
<div class="col-lg-5 mx-auto text-center">
<h2 class="section-title">Product Collection</h2>
</div>
</div>
<div id="collection" class="row owl-carousel owl-theme">
<?php
$categories = $categoryObj -> getCatWithImage();
while($result = mysqli_fetch_array($categories)){
?>
<!-- Start Product Column -->
<div class=" item mb-5 mb-md-0">
<a class="product-item" href="collection.php?catid=<?php echo $result['id']?>">
<img src="images/product/<?php echo $result['image'];?>" class="img-fluid product-thumbnail">
<h3 class="product-title"><?php echo $result['categories'];?></h3>
<span class="icon-cross">
<img src="images/cross.svg" class="img-fluid">
</span>
</a>
</div>
<!-- End Product Column -->
<?php
}
?>
</div>
</div>
</div>