Al-HUWAITI Shell
Al-huwaiti


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/bond-lounge.com/public_html/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /home/u615232177/domains/bond-lounge.com/public_html/team.php
<?php session_start();
$page_name = basename($_SERVER['PHP_SELF']);
$page_title = "Our Team Members";
$page_header = "team_header.jpg";
include("header.php"); ?>
<title><?php echo $company_name; ?> - <?php echo $page_title; ?></title>
<?php include("page_header.php"); ?>
<br><br>

<?php
	$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){  ?>
        <!--Team One Start-->
        <section class="team-one">
            <div class="team-one__shape-1 float-bob-y">
                <img src="assets/images/shapes/team-one-shape-1.png" alt="">
            </div>
            <div class="container">
                <div class="section-title text-center">
                    <div class="section-sub-title-box">
                        <p class="section-sub-title">Our team of experts</p>
                        <div class="section-title-shape-1">
                            <img src="assets/images/shapes/section-title-shape-1.png" alt="">
                        </div>
                        <div class="section-title-shape-2">
                            <img src="assets/images/shapes/section-title-shape-2.png" alt="">
                        </div>
                    </div>
                    <h2 class="section-title__title">Meet our experienced <br> team</h2>
                </div>
                <div class="row">
<?php while ($stmt_team -> fetch()) { ?>
                    <div class="col-6 col-xl-4 col-lg-4 wow fadeInUp" data-wow-delay="100ms">
                        <div class="team-one__single">
                            <div class="team-one__img">
                                <div class="team-one__img-box">
                                    <img src="site_img/team/<?php echo $team_picture ?>" alt="">
                                </div>
                                <ul class="list-unstyled team-one__social">
                                   
                                </ul>
                            </div>
                            <div class="team-one__content">
                                <p class="team-one__sub-title"><?php echo $team_position ?></p>
                                <h3 class="team-one__name"><a href=""><?php echo $team_name ?></a></h3>
                                
                            </div>
                        </div>
                    </div>
<?php } ?>             
                </div>
                <div class="row">
                    <div class="col-xl-12">
                        <div class="team-one__bottom">
                            
                        </div>
                    </div>
                </div>
            </div>
        </section>
        <!--Team One End-->
<?php } ?> 
<?php include("footer.php"); ?>

Al-HUWAITI Shell