RE: [PHP] $HTTP_USER_AGENT

2003-01-30 Thread Ford, Mike [LSS]
-Original Message- From: Jan Mikes [mailto:[EMAIL PROTECTED]] Sent: 30 January 2003 15:23 do anyone know where I can get a full list of $HTTP_USER_AGENT strings ?? Try http://www.psychedelix.com/agents.html -- it's about as comprehensive as they come! Cheers! Mike

Re: [PHP] $HTTP_USER_AGENT

2003-01-30 Thread Jan Mikes
exactly what I needed thank you mtg - Original Message - From: Ford, Mike [LSS] [EMAIL PROTECTED] To: 'Jan Mikes' [EMAIL PROTECTED]; [EMAIL PROTECTED] Sent: Thursday, January 30, 2003 4:46 PM Subject: RE: [PHP] $HTTP_USER_AGENT -Original Message- From: Jan Mikes [mailto

Re: [PHP] $HTTP_USER_AGENT

2003-01-30 Thread Chris Shiflett
--- Jan Mikes [EMAIL PROTECTED] wrote: do anyone know where I can get a full list of $HTTP_USER_AGENT strings ?? There is no such thing. Chris -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] HTTP_USER_AGENT - list of possibilities

2002-10-08 Thread Sascha Cunz
Hi, Hey everyone... do you know where I can find a list of the common returns of the $_SERVER[HTTP_USER_AGENT] variable? For example: I.E. 5.0 = Mozilla/4.0 (compatible; MSIE 5.01; Windows NT 5.0; .NET CLR 1.0.3705) Netscape 4.08 = Mozilla/4.08 [en] (WinNT; U ;Nav) On one side - i've

Re: [PHP] HTTP_USER_AGENT - list of possibilities

2002-10-08 Thread @ Edwin
I'm not aware of any but I'm sure you'll find this interesting: (if you haven't been there yet, at least) http://sourceforge.net/projects/phpsniff/ - E On Wednesday, October 09, 2002 9:20 AM Support @ Fourthrealm.com wrote: Hey everyone... do you know where I can find a list of the common

Re: [PHP] HTTP_USER_AGENT?

2002-07-14 Thread Richard Lynch
In article [EMAIL PROTECTED], [EMAIL PROTECTED] says... For example in a book discussing PHP 3 it says: ? phpinfo(); ? This works just fine. In a book that discusses PHP 4 it says: ? php_info() ? This gives Fatal error: Call to undefined function: php_info() in

Re: [PHP] HTTP_USER_AGENT?

2002-07-11 Thread David Robley
In article [EMAIL PROTECTED], [EMAIL PROTECTED] says... Thanks that worked just fine. But now I am irritated as hell. Obviously there is no backwards compatibility with new releases. Does this mean if I install a new version of PHP then all books published before that date are worthless?

Re: [PHP] HTTP_USER_AGENT?

2002-07-10 Thread Andrew Brampton
the $HTTP_USER_AGENT varible contains nothing... Try doing a phpinfo(); to see what the correct varible to use is, it is most likly $_SERVER['HTTP_USER_AGENT'] since the way these varibles are handled changed a few versions ago Andrew George Hester [EMAIL PROTECTED] wrote in message [EMAIL

RE: [PHP] HTTP_USER_AGENT?

2002-07-10 Thread Balaji Ankem
It is working fine for me!!! -Original Message- From: George Hester [mailto:[EMAIL PROTECTED]] Sent: Thursday, July 11, 2002 8:03 AM To: [EMAIL PROTECTED] Subject: [PHP] HTTP_USER_AGENT? I have this in my web site not in an executable folder: HTML HEAD TITLEMy First PHP

Re: [PHP] HTTP_USER_AGENT?

2002-07-10 Thread Justin French
Try: ? echo $_SERVER['HTTP_USER_AGENT']; ? ... you might have a newer version of PHP (4.1+), which uses the global arrays like: $_SERVER $_POST $_GET $_SESSION $_COOKIE ... Justin French on 11/07/02 12:32 PM, George Hester ([EMAIL PROTECTED]) wrote: I have this in my web site not in

Re: [PHP] HTTP_USER_AGENT?

2002-07-10 Thread George Hester
I wish I could say the same. Thanks. -- George Hester _ Balaji Ankem [EMAIL PROTECTED] wrote in message 005901c22883$f22d5840$[EMAIL PROTECTED]">news:005901c22883$f22d5840$[EMAIL PROTECTED]... It is working fine for me!!! -Original Message- From:

RE: [PHP] HTTP_USER_AGENT?

2002-07-10 Thread Chris Kay
To: [EMAIL PROTECTED] Subject: Re: [PHP] HTTP_USER_AGENT? I wish I could say the same. Thanks. -- George Hester _ Balaji Ankem [EMAIL PROTECTED] wrote in message 005901c22883$f22d5840$[EMAIL PROTECTED]">news:005901c22883$f22d5840$[EMAIL P

Re: [PHP] HTTP_USER_AGENT?

2002-07-10 Thread Tyler Longren
It works for you because you have register_globals set to on in php.ini. If you set it to off it won't work any longer. -- Tyler Longren Captain Jack Communications [EMAIL PROTECTED] www.captainjack.com On Thu, 11 Jul 2002 08:07:48 +0530 Balaji Ankem [EMAIL PROTECTED] wrote: It is working

RE: [PHP] HTTP_USER_AGENT?

2002-07-10 Thread Balaji Ankem
Yes..That is right!!! :-) -Original Message- From: Tyler Longren [mailto:[EMAIL PROTECTED]] Sent: Thursday, July 11, 2002 8:53 AM To: Balaji Ankem Cc: [EMAIL PROTECTED] Subject: Re: [PHP] HTTP_USER_AGENT? It works for you because you have register_globals set to on in php.ini. If you

Re: [PHP] HTTP_USER_AGENT?

2002-07-10 Thread George Hester
Thanks that worked just fine. But now I am irritated as hell. Obviously there is no backwards compatibility with new releases. Does this mean if I install a new version of PHP then all books published before that date are worthless? Seems so. For example in a book discussing PHP 3 it says: ?

RE: [PHP] HTTP_USER_AGENT?

2002-07-10 Thread Martin Towell
PM To: [EMAIL PROTECTED] Subject: Re: [PHP] HTTP_USER_AGENT? Thanks that worked just fine. But now I am irritated as hell. Obviously there is no backwards compatibility with new releases. Does this mean if I install a new version of PHP then all books published before that date are worthless

Re: [PHP] HTTP_USER_AGENT?

2002-07-10 Thread Philip Olson
PHP tries very hard to remain BC, in fact, some will say too hard :) The register_globals change was the biggest change in PHP history, can't think of any other change that comes close. And, that only changed the default value for this directive, you can turn it on if you wish. The PHP 4

Re: [PHP] $HTTP_USER_AGENT

2002-06-13 Thread Stuart Dallas
On Thursday, June 13, 2002, 4:36:29 PM, you wrote: Why $HTTP_USER_AGENT don't work?? I can't get it's value, but in phpinfo the value appears. why this??? Try $_SERVER['HTTP_USER_AGENT']. If that works, read http://www.php.net/manual/en/language.variables.predefined.php. -- Stuart -- PHP

Re: [PHP] $HTTP_USER_AGENT

2002-06-13 Thread Philip Olson
The php directive register_globals = on is what creates $HTTP_USER_AGENT and all vars from various places, such as GET, POST, COOKIE, SERVER, etc. If register_globals = off, $HTTP_USER_AGENT won't automagically exist. See this faqt for related information:

Re: [PHP] $HTTP_USER_AGENT

2002-04-02 Thread Craig Donnelly
Have a look here: http://www.evilwalrus.com/viewcode.php?codeEx=313 Craig Donnelly Eric Coleman [EMAIL PROTECTED] wrote in message 000b01c1d845$55158020$0201a8c0@zaireweb">news:000b01c1d845$55158020$0201a8c0@zaireweb... Why not echo $HTTP_USER_AGENT and find out? - Original Message

Re: [PHP] $HTTP_USER_AGENT

2002-03-30 Thread eric.coleman
Why not echo $HTTP_USER_AGENT and find out? - Original Message - From: Sean Kennedy [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Saturday, March 30, 2002 11:43 AM Subject: [PHP] $HTTP_USER_AGENT Hello, Im making a small php script, but I need to know how to do something. My

Re: [PHP] http_user_agent and proxy

2001-02-10 Thread Richard Lynch
I have this problem: I am using a script like this to make php use a remote proxy to get pages using a remote proxy: fputs($data1,"GET $myfiles/ HTTP/1.0\n\n"); The problem is that i want to set the HTTP_USER_AGENT to something different than a blank field, but have no idea how to do