04-08-2005, 11:52 PM
it is for apache (php) but in apache there is dozen parameters in php.ini, one of it "registerglobal"
forbid URL value when set to off...
fake example:
http:www.hello.com/index.php?value=1
$value will be set to 1 if "registerglobal" is ON
but will not be set at all if "registerglobal" is OFF...
in this case at top of script you might make something like that to catch the value:
$value=$_GET["value"];
Hope it help ?
Dan
forbid URL value when set to off...
fake example:
http:www.hello.com/index.php?value=1
$value will be set to 1 if "registerglobal" is ON
but will not be set at all if "registerglobal" is OFF...
in this case at top of script you might make something like that to catch the value:
$value=$_GET["value"];
Hope it help ?
Dan