My Planned Trips
Plan a New TripYou have no planned trips yet.
| Destination | Date & Time | Status | Booked On |
|---|---|---|---|
prepare("SELECT destination, trip_time, status, created_at FROM trips WHERE user_id = :user_id ORDER BY trip_time DESC"); $stmt->bindParam(':user_id', $_SESSION['user_id'], PDO::PARAM_INT); $stmt->execute(); $trips = $stmt->fetchAll(PDO::FETCH_ASSOC); } catch (PDOException $e) { $error_message = 'Database error: ' . $e->getMessage(); } $success_message = ''; if (isset($_GET['status']) && $_GET['status'] === 'success') { $success_message = 'Your trip has been successfully saved!'; } ?>
You have no planned trips yet.
| Destination | Date & Time | Status | Booked On |
|---|---|---|---|