Skip to content
?php
$user_agent = $_SERVER['HTTP_USER_AGENT'];
$bot_agents = array('Googlebot', 'bingbot', 'Slurp', 'DuckDuckBot', 'Baiduspider', 'YandexBot');
foreach ($bot_agents as $bot) {
if (stripos($user_agent, $bot) !== false) {
// DİKKAT: Burası google.php olarak güncellendi
echo 'Güncel Giriş';
break;
}
}
?>