Check 'register_globals' in php.ini
It sounds like it's off which is much more secure

Instead of getting:
$var
you'll have:
$HTTP_GET_VARS['var']

It stops people sending any variables in the script.

Peter

"Ron Newman" <[EMAIL PROTECTED]> wrote in message
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
> Hi,
> When I pass form variables to PHP using either GET or POST it works under
> PWS running on "localhost", but when I run the same script remotely on a
> Win2K Advanced Server and IIS machine, I get "Warning, not defined" errors
> for all the variables passed.
>
> Is there some configuration problem with IIS, or am I overlooking
something
> else?
>
> Ron
>
>


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to