On Tue, 03 Oct 2006 14:32:44 +0200 Sebastian Mendel lists@sebastianmendel.de wrote:
$_SESSION variables can be overwritten with register_globals on
you cannot overwrite variable with spaces
script.php?%20var%20
becomes
$_REQUST['_var']
so you have no possibility to overwrite any variable with spaces in its name from outside
Thanks for explanation!