Denizalgin adlı üyeden alıntı:
mesajı görüntüle
googlebot yahoo slurp! :(
13
●2.768
- 12-05-2008, 10:51:19hosttan demek istemiş sanırsamdeath_angel35 adlı üyeden alıntı: mesajı görüntüle
- 25-05-2008, 15:21:53
<? function user_agent() { $agent = $_SERVER['HTTP_USER_AGENT']; if(eregi('Googlebot/2.1',$agent)) { $tarayici = 'Googlebot 2.1'; } elseif(eregi('msnbot/1.0',$agent)) { $tarayici= 'MSNBot 1.0'; } elseif(eregi('msnbot/1.11',$agent)) { $tarayici = 'MSNBot 1.11'; } elseif(eregi('Yahoo! Slurp',$agent)) { $tarayici = 'Yahoo! Slurp'; } elseif(eregi('google',$agent)) { $tarayici = 'GoogleBot'; } elseif(eregi('msn',$agent)) { $tarayici = 'MsnBot'; } elseif(eregi('yahoo',$agent)) { $tarayici = 'YahooBot'; } #..... return $tarayici; } echo user_agent(); ?>