Re: [PHP] Tellwhich browser

2002-05-16 Thread Wolfram Kriesing
Justin French wrote: >A simple looks around at phpbuilder.com will result in an article on browser >detection & CSS... the browser detection function he writes can be used for >many things, including what you want. > >Justin French > > >on 16/05/02 12:09 AM, Diana Castillo ([EMAIL PROTECTED]) >wr

Re: [PHP] Tellwhich browser

2002-05-15 Thread Justin French
A simple looks around at phpbuilder.com will result in an article on browser detection & CSS... the browser detection function he writes can be used for many things, including what you want. Justin French on 16/05/02 12:09 AM, Diana Castillo ([EMAIL PROTECTED]) wrote: > What is the code to tel

Re: [PHP] Tellwhich browser

2002-05-15 Thread Danny Shepherd
$_SERVER['HTTP_USER_AGENT'] That's the variable which holds the browser's user agent string (browser name, version, platform etc); You may also find this helpful http://www.php.net/manual/en/function.get-browser.php HTH Danny. - Original Message - From: "Diana Castillo" <[EMAIL PROTE

Re: [PHP] Tellwhich browser

2002-05-15 Thread Mark Gallagher
Diana Castillo wrote: > What is the code to tell whether the user is on IE or Netscape? It's slightly more complicated than that (I'm a newbie too, but I know a very little about user-agent strings), but it *will* involve using http://www.php.net/manual/en/function.get-browser.php As you may be