I am trying to use a session variable like this:
$string = 'abc';
$_SESSION[$string];
But I get access if i use it like this:
$_SESSION['abc'];
But I get always an error like this:
Notice: Undefined index: abc
Any ideas to solve my problem? :/
$_SESSION[$string] = "Some_Value"