prepare("SELECT * FROM packages WHERE category = :category ORDER BY id DESC");
$stmt->execute(['category' => $category]);
$has_records = false;
while ($row = $stmt->fetch()) {
$has_records = true;
// Parse comma-separated stops back into clean line item array links
$stops_list = array_map('trim', explode(',', $row['stops']));
?>
Exciting new packages for this category are launching soon! Contact us for custom bookings.
';
}
} catch (PDOException $e) {
error_log("Grid runtime fail: " . $e->getMessage());
echo '
Failed to load package configuration system mapping profiles.