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>