Server : LiteSpeed System : Linux us-phx-web1202.main-hosting.eu 4.18.0-553.84.1.lve.el8.x86_64 #1 SMP Tue Nov 25 18:33:03 UTC 2025 x86_64 User : u615232177 ( 615232177) PHP Version : 8.1.33 Disable Function : NONE Directory : /home/u615232177/domains/florencewaltersconsulting.com/public_html/ |
<?php session_start();
$page_name = basename($_SERVER['PHP_SELF']);
$page_title = "Our Team";
$page_header = "team_header.jpg";
include("header.php"); ?>
<title><?php echo $company_name; ?> - <?php echo $page_title; ?></title>
<?php include("page_header.php"); ?>
<?php
$count = 0;
$stmt_team = $con -> prepare('SELECT * FROM team');
$stmt_team -> execute();
$stmt_team -> store_result();
$stmt_team -> bind_result($team_id,$team_name,$team_position,$team_picture);
$numrows_team = $stmt_team -> num_rows();
if($numrows_team > 0){
?>
<!-- Our Team -->
<team-slider class="team-slider mt-100">
<div class="container">
<div class="section-headings headings-width text-center">
<div class="subheading text-20 subheading-bg" data-aos="fade-up">
<svg
class="icon icon-14"
xmlns="http://www.w3.org/2000/svg"
width="14"
height="14"
viewBox="0 0 14 14"
fill="none">
<g clip-path="url(#clip0_9088_4143)">
<path
d="M8.71401 5.28599C11.7514 5.4205 14 5.9412 14 7C14 8.0588 11.7514 8.5795 8.71401 8.71401C8.5795 11.7514 8.0588 14 7 14C5.9412 14 5.4205 11.7514 5.28599 8.71401C2.2486 8.5795 -1.33117e-07 8.0588 0 7C4.62818e-08 5.94119 2.2486 5.4205 5.28599 5.28599C5.4205 2.2486 5.9412 0 7 0C8.0588 0 8.5795 2.2486 8.71401 5.28599Z"
fill="CurrentColor" />
</g>
<defs>
<clipPath>
<rect width="14" height="14" fill="CurrentColor" />
</clipPath>
</defs>
</svg>
<span>Our Team</span>
<svg
class="icon icon-14"
xmlns="http://www.w3.org/2000/svg"
width="14"
height="14"
viewBox="0 0 14 14"
fill="none">
<g clip-path="url(#clip0_9088_4143)">
<path
d="M8.71401 5.28599C11.7514 5.4205 14 5.9412 14 7C14 8.0588 11.7514 8.5795 8.71401 8.71401C8.5795 11.7514 8.0588 14 7 14C5.9412 14 5.4205 11.7514 5.28599 8.71401C2.2486 8.5795 -1.33117e-07 8.0588 0 7C4.62818e-08 5.94119 2.2486 5.4205 5.28599 5.28599C5.4205 2.2486 5.9412 0 7 0C8.0588 0 8.5795 2.2486 8.71401 5.28599Z"
fill="CurrentColor" />
</g>
<defs>
<clipPath>
<rect width="14" height="14" fill="CurrentColor" />
</clipPath>
</defs>
</svg>
</div>
<h2 class="heading text-50" data-aos="fade-up">
Meet the experts behind your success
</h2>
</div>
</div>
<div class="section-content" data-aos="fade-up">
<div class="container">
<div class="row">
<?php while ($stmt_team -> fetch()) { $count++; ?>
<div class="col-3 py-3">
<div class="card-team radius18">
<img
src="site_img/team/<?= $team_picture ?>"
alt="team image"
style="width:100%;height:400px;object-fit:cover;"
loading="lazy">
<div class="card-team-content-absolute">
<div class="card-team-content">
<a href="" aria-label="team details" class="heading text-22 fw-600"><?= $team_name ?></a>
<p class="text text-18"><?= $team_position ?></p>
</div>
</div>
</div>
</div>
<?php } ?>
</div>
<div class="swiper-pagination"></div>
</div>
</div>
</team-slider>
<?php } ?>
</main>
<br>
<?php include("footer.php"); ?>