Re: [PHP] Trouble with PHP server script

2008-02-14 Thread Stut
Richard Lynch wrote: On Sun, February 10, 2008 9:09 pm, Robert Cox wrote: Is it possible to use the "$_SERVER['PHP_AUTH_USER'];" construct in a URL forwarded site? I am trying to find the authorised user id so that I can access an SQL database with it. Anyone got some ideas? If you do a Loc

Re: [PHP] Trouble with PHP server script

2008-02-14 Thread Richard Lynch
On Sun, February 10, 2008 9:09 pm, Robert Cox wrote: > Is it possible to use the "$_SERVER['PHP_AUTH_USER'];" construct in a > URL > forwarded site? I am trying to find the authorised user id so that I > can > access an SQL database with it. Anyone got some ideas? If you do a Location: with a

Re: [PHP] Trouble with PHP server script

2008-02-11 Thread Daniel Brown
On Feb 10, 2008 10:09 PM, Robert Cox <[EMAIL PROTECTED]> wrote: > Is it possible to use the "$_SERVER['PHP_AUTH_USER'];" construct in a URL > forwarded site? I am trying to find the authorised user id so that I can > access an SQL database with it. Anyone got some ideas? Once again I'll defe

Re: [PHP] Trouble with PHP server script

2008-02-10 Thread Jim Lucas
Robert Cox wrote: Is it possible to use the "$_SERVER['PHP_AUTH_USER'];" construct in a URL forwarded site? I am trying to find the authorised user id so that I can access an SQL database with it. Anyone got some ideas? PHP looks like this //Get User $user = $_SERVER['PHP_AUTH_USER

Re: [PHP] Trouble with PHP server script

2008-02-10 Thread Nirmalya Lahiri
--- Robert Cox <[EMAIL PROTECTED]> wrote: > Is it possible to use the "$_SERVER['PHP_AUTH_USER'];" construct in > a URL > forwarded site? I am trying to find the authorised user id so that > I can > access an SQL database with it. Anyone got some ideas? > > PHP looks like this > >//G

[PHP] Trouble with PHP server script

2008-02-10 Thread Robert Cox
Is it possible to use the "$_SERVER['PHP_AUTH_USER'];" construct in a URL forwarded site? I am trying to find the authorised user id so that I can access an SQL database with it. Anyone got some ideas? PHP looks like this