Hi,
A little help here needed - i want to make a class variable (array). Some values are expected to be from a session variable.
Example
public $myArray = array(
'key1' => 'something',
'key2' => $_SESSION['something_else'],
)
With this i get an error about unexpected variable. Aynone knows how to solve this situation?