Code: Select all
$HTTP_SESSION_VARSї'check'] = array(1 => 1);Code: Select all
$check = array(1 => 1);Also if I can't use the code in the first example, is it better to initialize a session variable locally before I use it
Code: Select all
$check = $HTTP_SESSION_VARї'check'];
$check = 1;Which is the proper way to use it?$check = 1;
Thanks