| Current Path : /home/www/khana.org.af/server/supporter/ |
| Current File : //home/www/khana.org.af/server/supporter/read.php |
<?php
require_once('../conn.php');
$query = "SELECT * FROM `supporter` order by id desc limit 8";
$select = $conn->prepare($query);
$select->execute();
?>
<!-- Clients Section -->
<section id="clients" class="clients section">
<div class="container">
<h2 class="text-center">Our Partners</h2>
<p class="container">
For over a decade, KHANA has been privileged to collaborate with a remarkable array of clients and partners nationwide. We take pride in providing a wide spectrum of advanced solutions and expert services across numerous sectors and fields. Our respected clientele includes government bodies, international and bilateral organizations, foundations, private companies, non-governmental organizations, and civil society groups. Among the many distinguished clients and partners we have worked with are:
</p>
<div class="swiper init-swiper">
<script type="application/json" class="swiper-config">
{
"loop": true,
"speed": 600,
"autoplay": {
"delay": 5000
},
"slidesPerView": "auto",
"pagination": {
"el": ".swiper-pagination",
"type": "bullets",
"clickable": true
},
"breakpoints": {
"320": {
"slidesPerView": 2,
"spaceBetween": 40
},
"480": {
"slidesPerView": 3,
"spaceBetween": 60
},
"640": {
"slidesPerView": 4,
"spaceBetween": 80
},
"992": {
"slidesPerView": 6,
"spaceBetween": 120
}
}
}
</script>
<div class="swiper-wrapper align-items-center">
<?php
while ($row = $select->fetch(PDO::FETCH_ASSOC)) {
?>
<div class="swiper-slide"><img src="assets/img/team/<?php echo $row['img']; ?>" class="img-fluid" style="height: 120px;" width="120px" alt=""></div>
<?php
}
?>
</div>
</div>
</div>
</section><!-- /Clients Section -->