> > Use this to identify Netscape 4.x:
> >
> > if(strstr($HTTP_USER_AGENT,"Mozilla/4") &&
> > !strstr($HTTP_USER_AGENT,"MSIE")){
> >     // is Netscape 4
> > } else {
> >     // is something else
> > }
> >
>
> Is that going to catch the Mozilla spoofers, like webtv and opera?

Err, no...  if they are being spoofed then why would it?

Open a phpinfo() page in each of the browsers you wish to correctly
identify, then you can see what user agent you need to search for to do
whatever with...  :)

------------------------------------------------------------------------
Greg Donald - http://destiney.com/
http://phprated.com/ | http://phplinks.org/ | http://phptopsites.com/
------------------------------------------------------------------------


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to