HEX
Server: LiteSpeed
System: Linux server214.web-hosting.com 4.18.0-553.45.1.lve.el8.x86_64 #1 SMP Wed Mar 26 12:08:09 UTC 2025 x86_64
User: bigisxfd (746)
PHP: 8.4.15
Disabled: NONE
Upload Files
File: /home/bigisxfd/public_html/cowork/inactive-bookings.php
<?php																																										

// Include necessary files
include_once("header.php");
include_once("sidebar.php");

// Fetch inactive bookings
$inactiveBookings = getInactiveBookings(); // Define this function to fetch inactive bookings

?>

<section>
    <div class="column">
        <h2>Inactive Bookings</h2>
        <table>
            <thead>
                <tr>
                    <th>Booking ID</th>
                    <th>Member ID</th>
                    <th>Package Name</th>
                    <th>Start Date</th>
                    <th>End Date</th>
                </tr>
            </thead>
            <tbody>
                <?php foreach ($inactiveBookings as $booking): ?>
                <tr>
                    <td><?php echo $booking['bookingid']; ?></td>
                    <td><?php echo $booking['firstname'] . ' ' . $booking['lastname']; ?></td>
                    <td><?php echo $booking['packagename']; ?></td>
                    <td><?php echo date("F j, Y", strtotime($booking['startdate'])); ?></td>
                    <td><?php echo date("F j, Y", strtotime($booking['enddate'])); ?></td>
                </tr>
                <?php endforeach; ?>
            </tbody>
        </table>
    </div>
</section>

</body>
</html>