I just came across this in a security journal and wasn't sure what to make of it:
Set the "variables_order" variable of the PHP configuration. The default setting, "EGPCS" means that the environment, the GET parameters, the POST parameters, the cookies, and the server information are all turned into global variables when a script executes. Allowing GET requests, POST requests, and cookies from the browser to do so is dangerous. Instead, consider setting "variables_order" to "ES".
I couldn't track down the author of this article, so I'm asking everone here. Can anyone explain why this recommendation was made? Is it important and what does it mean? Thanks!