Is it better to leave a session variable in this form $SESSION['var']; or is it better to put it into a variable like $var = $SESSION['var']; ?
I use the second approach, as you run less risk accidentally changing the stored variable.