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
include_once "./backend/classes/Team.php";
$teamObj = new Team();
$team = $teamObj -> get();
if ($team){
?>
<div class="untree_co-section">
<div class="container">
<div class="row mb-5">
<div class="col-lg-5 mx-auto text-center">
<h2 class="section-title">Our Team</h2>
</div>
</div>
<div class="row">
<?php
while($member = mysqli_fetch_array($team)){
?>
<!-- Start Member -->
<div class="col-12 col-md-6 col-lg-3 mb-5 mb-md-0">
<img src="images/team/<?php echo $member['image']?>" class="img-fluid mb-5">
<h3 clas><a href="#"><?php echo $member['name']?></a></h3>
<span class="d-block position mb-4"><?php echo $member['post']?></span>
<p><?php echo $member['content']?></p>
<p class="mb-0"><a href="#" class="more dark">Learn More <span class="icon-arrow_forward"></span></a></p>
</div>
<!-- End Member -->
<?php
}
?>
</div>
</div>
</div>
<?php
}
?>