Why does PHP not allow the use of a decimal value as a root key in $_SESSION?
For example...
$paper_num = '159339';
$mark = 'A';
$_SESSION[$paper_num][$mark];
... Doesn't work.
Why does PHP not allow the use of a decimal value as a root key in $_SESSION?
For example...
$paper_num = '159339';
$mark = 'A';
$_SESSION[$paper_num][$mark];
... Doesn't work.
cant you save it in the session as an array eg..