For some reason, if my $_SESSION looks something like this:
Array (
[userid] => 123
[blah] => bleh
)
When I do something like:
$blah=array(1,2,3);
It changes my whole $_SESSION. Is that normal, or is there something wrong that’s happening?
For some reason, if my $_SESSION looks something like this: Array ( [userid] =>
Share
Is register_globals enabled? Disable that.