Domain: amberpublishers.in
Server Adress: 86.38.243.169
privdayz.com
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Require database connection -->
<?php require '../admin/include/db.php'; ?>
<!-- Require common head -->
<?php include 'common/head.php'; ?>
</head>
<body>
<!-- Include common header -->
<?php include 'common/header.php'; ?>
<?php
// Query to fetch all reviewers from the database
$sql = "SELECT * FROM reviewers";
$all_reviewers = mysqli_query($conn, $sql);
?>
<main id="main">
<!-- Breadcrumbs Section -->
<section class="breadcrumbs">
<div class="container">
<div class="d-flex justify-content-between align-items-center">
<h2 class="fw-bold">Our Reviewers</h2>
<ol>
<li><a href="index.php">Home</a></li>
<li>Our Reviewers</li>
</ol>
</div>
</div>
</section>
<!-- End Breadcrumbs Section -->
<!-- Our Reviewers Section -->
<!-- Our Reviewers Section -->
<section id="our-reviewers" class="py-5">
<div class="container" data-aos="fade-up">
<div class="section-header">
<h2 class="fw-bold">Meet Our Reviewers</h2>
</div>
<?php while ($row = mysqli_fetch_assoc($all_reviewers)) { ?>
<!-- <div class="card mb-4"> -->
<!-- <div class="card-body"> -->
<hr class="my-2">
<p class="card-text">
<b> <?php echo $row["name"] ?></b>, <?php echo $row["affiliation"] ?><br>
<strong>Email:</strong>
<?php echo $row["email"] ?>
</p>
<hr class="my-2">
<!-- </div> -->
<!-- </div> -->
<?php } ?>
</div>
</section>
<!-- End Our Reviewers Section -->
</main>
<!-- Include common footer -->
<?php include 'common/footer.php'; ?>
<a href="#" class="back-to-top d-flex align-items-center justify-content-center"><i class="bi bi-arrow-up-short"></i></a>
<!-- Include common scripts -->
<?php include 'common/scripts.php'; ?>
</body>
</html>
