welcome to beutiful lodge
$check_in = $_GET['check_in'] ?? ''; $check_out = $_GET['check_out'] ?? ''; $persons = intval($_GET['persons'] ?? 1); $nights = 0; if (!empty($check_in) && !empty($check_out)) { $nights = max(1, (strtotime($check_out) - strtotime($check_in)) / 86400); } // Helper function to extract YouTube video ID function getYouTubeVideoId($url) { $pattern = '/(?:youtube\.com\/(?:[^\/]+\/.+\/|(?:v|e(?:mbed)?)\/|.*[?&]v=)|youtu\.be\/)([^"&?\/\s]{11})/i'; if (preg_match($pattern, $url, $matches)) { return $matches[1]; } return null; } ?>
welcome to beutiful lodge