Re: [PHP-WIN] Re: PHP retrieve Client machine name

2005-11-18 Thread Manuel Lemos
Hello, on 11/18/2005 05:27 AM [EMAIL PROTECTED] said the following: Just enable Windows NTLM authentication in the PHP pages and use >PHP call GetEnv("LOGON_USER"); How exactly would you enable Windows NTLM Authentication in PHP pages? Its a web server configuration matter, not specifically

Re: [PHP-WIN] Re: PHP retrieve Client machine name

2005-11-17 Thread trystano
>Just enable Windows NTLM authentication in the PHP pages and use >PHP call >GetEnv("LOGON_USER"); How exactly would you enable Windows NTLM Authentication in PHP pages? Tryst -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-WIN] Re: PHP retrieve Client machine name

2005-11-17 Thread Manuel Lemos
Hello, on 11/17/2005 10:55 PM Frank M. Kromann said the following: I Think the corret answer to this question is $REMOTE_ADDR or $_SERVER['REMOTE_ADDR']. This will return the IP address of the client that connects. Right, for some reason I read he wanted the Windows client user name. -- Rega

Re: [PHP-WIN] Re: PHP retrieve Client machine name

2005-11-17 Thread Frank M. Kromann
I Think the corret answer to this question is $REMOTE_ADDR or $_SERVER['REMOTE_ADDR']. This will return the IP address of the client that connects. - Frank > Hello, > > on 11/17/2005 02:42 PM Alf Stockton said the following: > > In a PHP 5.0 program running under Windows 2000 with Apache 2 I nee