Viewing File: /home/webrbaew/getcandycleanse.com/testimonials.php

<!DOCTYPE html><html lang="en">
<head>
	<?php include "includes/operations.php";?>
	<?php include "includes/headerlinks.php";?>
</head>

<body>

    
		
	<?php include "includes/top_header.php";?>
	<?php include "includes/navigation.php";?>
	<?php include "includes/mobile_navigation.php";?>
	<?php include "includes/mobile_sticky_menus.php";?>
	<?php include "includes/cart_window.php";?>
	<?php include "includes/search.php";?>


    <main class="main__content_wrapper">
        <!-- Start slider section -->
        <section class="breadcrumb__section breadcrumb__bg">
            <div class="container-fluid">
                <div class="row row-cols-1">
                    <div class="col">
                        <div class="breadcrumb__content">
                            <h1 class="breadcrumb__content--title text-white mb-10">Testimonials</h1>
                            <ul class="breadcrumb__content--menu d-flex">
                                <li class="breadcrumb__content--menu__items"><a class="text-white" href="index.php">Home</a></li>
                                <li class="breadcrumb__content--menu__items"><span class="text-white">Testimonials</span></li>
                            </ul>
                        </div>
                    </div>
                </div>
            </div>
        </section>
        <!-- End slider section -->
		<div class="container section--padding">
			<div class="section__heading text-center mb-40">
				<h2 class="section__heading--maintitle">Our Success Stories</h2>
			</div>
			<div class="portfolio__section--inner">
				<div class="row mb--n30">
					<?php
						$result_category = mysqli_query($con,"SELECT * FROM category order by c_name ASC");
						if(mysqli_num_rows($result_category)>0){
						while($row_category=mysqli_fetch_array($result_category)){
							$cate_id = $row_category['c_id'];
					?>
					<div class="col-md-4 mb-30">
						<div class="portfolio__items">
							<div class="portfolio__items--thumbnail position__relative">
								<a class="portfolio__items--thumbnail__link glightbox" href="admin/uploads/testimonials/<?php echo $row_category['picture'];?>" data-gallery="portfolio"><img class="portfolio__items--thumbnail__img" src="admin/uploads/testimonials/<?php echo $row_category['picture'];?>" alt="portfolio-img">
									<span class="portfolio__view--icon"><svg xmlns="http://www.w3.org/2000/svg" width="39.697" height="27.066" viewBox="0 0 39.697 27.066">
										<path d="M20.849,4.5A21.341,21.341,0,0,0,1,18.033a21.322,21.322,0,0,0,39.7,0A21.341,21.341,0,0,0,20.849,4.5Zm0,22.555a9.022,9.022,0,1,1,9.022-9.022A9.025,9.025,0,0,1,20.849,27.055Zm0-14.435a5.413,5.413,0,1,0,5.413,5.413A5.406,5.406,0,0,0,20.849,12.62Z" transform="translate(-1 -4.5)" fill="currentColor"></path>
										</svg>
									</span>
								</a>
							</div>
						</div>
					</div>
					<?php
							}
						} else {
							echo '<h6 class="text-center text-capitalize" style="color:red;">No record found. </h6>';
						}
					?>
				</div>
			</div>
		</div>
		

    </main>

    <!-- Start footer section -->
    <?php include "includes/footer.php";?>
    <!-- End footer section -->

	<?php include "includes/footerlinks.php";?>
	<?php include "includes/cart_functions.php";?>

</body></html>
Back to Directory File Manager