I commonly see people setting $_SESSION variables as
$_SESSION['example']=$_REQUEST['something'];
$example=$_SESSION['example'];
is this redundant?
I am currently working on a new server and
$_SESSION['example']=$_REQUEST['something'];
gives me access to $example without any extra code
is this normal or a php configuration making my life easier but potentially more dangerous?