Re: [PHP] Re: security of stand alone script

2002-11-24 Thread Jason Wong
On Monday 25 November 2002 02:10, gamin wrote: > i guess i can use $remote_addr to see if the user has an IP. > > But still out of curosity - any way of knowing the user that called the > script ? Use phpinfo(). -- Jason Wong -> Gremlins Associates -> www.gremlins.biz Open Source Software System

Re: [PHP] Re: security of stand alone script

2002-11-24 Thread Ernest E Vogelsinger
At 19:10 24.11.2002, gamin said: [snip] >i guess i can use $remote_addr to see if the user has an IP. > >But still out of curosity - any way of knowing the user that called the >script ? [snip] If the script is called

Re: [PHP] Re: security of stand alone script

2002-11-24 Thread Stephen
Just a little note. Don't use $remote_addr. I would strongly recomend using $HTTP_SERVER_VARS["REMOTE_ADDR"]. - Original Message - From: "gamin" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Sunday, November 24, 2002 1:10 PM Subject: [PHP] Re:

[PHP] Re: security of stand alone script

2002-11-24 Thread gamin
i guess i can use $remote_addr to see if the user has an IP. But still out of curosity - any way of knowing the user that called the script ? gamin. Gamin" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > Hi, > >Running Red Hat 7.2, PHP 4.0.6. Is there any