Possible Duplicate:
PHP session variables interchanged with local variables?
Well, I just found a "bug" in PHP, it just mess up $_SESSION and common variables!
session_start();
$_SESSION["test"] = 123;
$test = 456;
echo $_SESSION["test"];
for some reason, the output of this snippet is 456! is it ok or is just a php bug?