Re: [PHP] client information

2005-01-11 Thread Greg Donald
On Tue, 11 Jan 2005 11:31:53 -0800 (PST), Richard Lynch <[EMAIL PROTECTED]> wrote: > -r isn't listed in my php -h, so I dunno what it does, but... r is for run. > I don't think that's the DISPLAY environment variable set by the CLIENT > surfing from their Linux box is it? It's not, was that a r

Re: [PHP] client information

2005-01-11 Thread Richard Lynch
Greg Donald wrote: > On Tue, 11 Jan 2005 10:10:37 -0800 (PST), Richard Lynch <[EMAIL PROTECTED]> > wrote: >> > what i need to know if its possible to find out more information about >> > the client, like in linux the DISPLAY variable of the client ? >> >> It's incredibly unlikely that Linux browser

Re: [PHP] client information

2005-01-11 Thread Greg Donald
On Tue, 11 Jan 2005 10:10:37 -0800 (PST), Richard Lynch <[EMAIL PROTECTED]> wrote: > > what i need to know if its possible to find out more information about > > the client, like in linux the DISPLAY variable of the client ? > > It's incredibly unlikely that Linux browsers provide this info to th

Re: [PHP] client information

2005-01-11 Thread Richard Lynch
Bruno Santos wrote: > I have a problem that i hope to solve with php. i know that, using > $_SERVER['xxx'] is possible to find some information about the client > who is accessing the script. PHP passes on *everything* the server passes on which is usually *everything* the browser provides. T

Re: [PHP] client information

2005-01-11 Thread Benjamin Edwards
A couple of things that mey help. I think phpinfo() will display all the system varables. These varables come from the web server so your web server documentation may help. Another thing that may work is implode ( ',' $_SERVER ) which should give you a (, comma) seperated list of $_SERVER (No

[PHP] client information

2005-01-11 Thread Bruno Santos
Hello all. I have a problem that i hope to solve with php. i know that, using $_SERVER['xxx'] is possible to find some information about the client who is accessing the script. what i need to know if its possible to find out more information about the client, like in linux the DISPLAY variabl