--- 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
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_AGEN
> -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
hi all,
do anyone know where I can get a full list of $HTTP_USER_AGENT strings ??
thanx a lot
mtg
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
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 -
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)
Thanks,
Peter
- - - - - - -
>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
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 worthles
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
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?
Seems so.
For
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:
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
ph
t; <[EMAIL PROTECTED]> wrote:
> 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 hav
day, 11 July 2002 1:18 PM
> 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
00
>
>
> -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:
>
>
>
> My First PH
Try:
... 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 an executable folder:
>
>
>
> My Fi
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:
My First PHP Program
No problem
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
I have this in my web site not in an executable folder:
My First PHP Program
No problem. I then put this in the same folder:
My Second PHP Program
Nothing appears. What's wrong?
--
George Hester
_
--
PHP General Mailing List (http://www.php
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:
http://www.faqts.com/knowledge_
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
Hello,
Why $HTTP_USER_AGENT don't work?? I can't get it's value, but in phpinfo the
value appears. why this???
Thanking in advance,
Nuno Lopes
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
ind 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
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 n
Hello,
Im making a small php script, but I need to know how to do something.
My problem is: I have a script thats like this:
Do you know what I mean? Thanks,
-Sean
Kennedy
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
> 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 t
Hi guys,
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:
$data1 = fsockopen($proxy, $port, &$errno, &$errstr);
if( !$data1 )
{
echo "proxy not available !";
fclose($resultfile);
// exit();
}
else
{
fput
This seems trivial at first (and maybe at last!):
Browser Match Results
$result"; ?>
But, just as it's a good idea to use the HTTP_USER_AGENT environment to
dynamically set the size of type so that Internet Explorer users are not
forced to view huge text (which appears fine in Amaya,
29 matches
Mail list logo