File "team-20260113111125.php"
Full Path: /home/ovanhxso/public_html/panel/cgi-bin/team-20260113111125.php
File size: 3.47 KB
MIME-type: text/x-php
Charset: utf-8
<?php include("include/header.php"); ?>
<head>
<!-- common meta tags -->
<title>Our Team | Dedicated Volunteers</title>
<meta name="description" content="Meet our dedicated team of volunteers and staff who work tirelessly to make a difference.">
<meta name="keywords" content="our team, volunteer team, staff, organization team, OVA team">
<meta name="robots" content="index, follow">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="language" content="English">
<link rel="canonical" href="https://www.ova.ngo/team.php">
<!-- facebook meta tags -->
<meta property="og:title" content="Our Team | Dedicated Volunteers">
<meta property="og:description" content="Meet our dedicated team of volunteers and staff who work tirelessly to make a difference.">
<meta property="og:image" content="assets/images/logo.png">
<meta property="og:url" content="https://www.ova.ngo/team.php">
<!-- Twiiter meta tags -->
<meta name="twitter:title" content="Our Team | Dedicated Volunteers">
<meta name="twitter:description" content="Meet our dedicated team of volunteers and staff who work tirelessly to make a difference.">
<meta name="twitter:url" content="https://www.ova.ngo/team.php">
<meta name="twitter:card" content="summary">
</head>
<section class="page-title bg-background-area" data-bg="assets/images/bg7.jpg">
<div class="overlay"></div>
<div class="page-title-container">
<div class="page-title-wrapper">
<div class="container">
<div class="row">
<div class="col col-xs-12">
<h2>Team</h2>
<ol class="breadcrumb">
<li><a href="./">Home</a></li>
<li>Team</li>
</ol>
</div>
</div>
<!-- end row -->
</div>
<!-- end container -->
</div>
</div>
</section>
<!-- start team-section -->
<section class="team-section section-padding container">
<div class="content-area">
<div class="row">
<div class="col col-md-8 col-md-offset-2 col-sm-10 col-sm-offset-1">
<div class="section-title-s3">
<h2>Our Team</h2>
<div class="team-details">
<p>The Hearts and Hands Behind Our Vision</p>
</div>
</div>
</div>
</div>
<div class="row">
<?php
$stm=$conn->prepare("SELECT * FROM team where delete_status = 0");
$stm->execute();
$ro=$stm->fetchAll();
foreach ($ro as $ke) {
?>
<div class="col-md-9 mt-5">
<div class="team-content team-text">
<h4><?php echo $ke['name1'];?></h4>
<div class="designation" class="text-dark"><b><?php echo $ke['designation'];?></b></div>
<div class="text4"><?php echo html_entity_decode($ke['description']);?></div>
</div>
</div>
<div class="col-md-3 mt-5">
<div class="team-block team-img">
<img src="panel/assets/images/<?php echo $ke['photo'];?>" alt="our team">
</div>
</div>
<?php } ?>
</div>
</div>
<!-- end content-area -->
</section>
<!-- end team-section -->
<?php include("include/footer.php"); ?>