local changes.

This commit is contained in:
twotalesanimation
2025-07-24 07:20:51 +02:00
parent 53c29b62ca
commit b69f8f5f1b
24 changed files with 331 additions and 116 deletions

View File

@@ -80,7 +80,7 @@ if (!empty($bannerImages)) {
// Query to retrieve data from the trips table
$sql = "SELECT trip_id, trip_name, location, short_description, start_date, end_date, vehicle_capacity, cost_members, places_booked FROM trips WHERE start_date > CURDATE()";
$sql = "SELECT trip_id, trip_name, location, short_description, start_date, end_date, vehicle_capacity, cost_members, places_booked FROM trips WHERE published = 1 AND start_date > CURDATE()";
$result = $conn->query($sql);
if ($result->num_rows > 0) {