// Load settings if not already loaded
if (!isset($settings)) {
    // Adjust the path as needed for your project structure
    require_once __DIR__ . '/../../includes/config.php';
    require_once __DIR__ . '/../../includes/functions.php';
    $db = getDBConnection();
    $settings = getAllSettings($db);
}
// Check if left banner is enabled
$leftBannerEnabled = isset($settings['enable_left_banner']) && $settings['enable_left_banner'] == '1';
// Only output banner if enabled
if ($leftBannerEnabled) {
    if (!empty($leftBanner)) {
        // Output the banner code with container
        echo '
                
                ';
        echo $leftBanner;
        echo '
';
    } else if (!empty($settings['left_banner'])) {
        // Output from settings
        echo '';
        echo $settings['left_banner'];
        echo '
';
    }
}
?> 
                 
                    Mujigae (2024)
                                
                                 2024
                                
                                
                                
                                 tl
                            
            
                        After losing her Filipino mother in South Korea, 5-year-old Mujigae, half-Korean, half-Filipino, finds herself in the care of her estranged Aunt Sunny in the Philippines. As they navigate this unexpected journey, they confront grief, unravel cultural complexities, and discover the transformative power of family and community. Through their poignant exploration, Mujigae learns to embrace change through courage and resilience, finding her place in the world with a strong chance at life.
                    Director: Randolph Longjas                
                                
                                
                                
                    Cast: Kim Ji-soo, Alexa Ilacad, Ryrie Sophia, Rufa Mae Quinto, Richard Quan, Kate Alejandrino, Donna Cariaga, Cai Cortez, Roli Inocencio, Anna Luna                
                            Genres
                    // Load settings if not already loaded
if (!isset($settings)) {
    // Adjust the path as needed for your project structure
    require_once __DIR__ . '/../../includes/config.php';
    require_once __DIR__ . '/../../includes/functions.php';
    $db = getDBConnection();
    $settings = getAllSettings($db);
}
// Check if right banner is enabled
$rightBannerEnabled = isset($settings['enable_right_banner']) && $settings['enable_right_banner'] == '1';
// Only output banner if enabled
if ($rightBannerEnabled) {
    if (!empty($rightBanner)) {
        // Output the banner code with container
        echo '
            ';
        echo $rightBanner;
        echo '
';
    } else if (!empty($settings['right_banner'])) {
        // Output from settings
        echo '';
        echo $settings['right_banner'];
        echo '
';
    } 
}
?>