prepare("INSERT INTO trips (user_id, destination, trip_time) VALUES (:user_id, :destination, :trip_time)"); $stmt->bindParam(':user_id', $_SESSION['user_id'], PDO::PARAM_INT); $stmt->bindParam(':destination', $destination, PDO::PARAM_STR); $stmt->bindParam(':trip_time', $trip_time, PDO::PARAM_STR); if ($stmt->execute()) { header('Location: my-trips.php?status=success'); exit(); } else { $error_message = 'Failed to save the trip. Please try again.'; } } catch (PDOException $e) { $error_message = 'Database error: ' . $e->getMessage(); } } } ?> Trip Setup - HerWay

Plan Your Trip

Enter your destination and travel time to find verified travel companions.