I have a bunch of old sites I need to change to account for the new default
value register_global s=Off
The quickest way was to put this in my header file:
foreach ($HTTP_POST_VAR S as $header=> $value ){
$$header = $value;
}
Did I just negate the value of the new default value? I'm trying to strike a
balance so that I don't have to go through dozens of pages, finding all the
unitialized variables, and still obtain some of the added security.
All comments are appreciated. Still reading up on this parameter. thanks
value register_global s=Off
The quickest way was to put this in my header file:
foreach ($HTTP_POST_VAR S as $header=> $value ){
$$header = $value;
}
Did I just negate the value of the new default value? I'm trying to strike a
balance so that I don't have to go through dozens of pages, finding all the
unitialized variables, and still obtain some of the added security.
All comments are appreciated. Still reading up on this parameter. thanks
Comment