Hey Guys,
I just upgraded my Project from Phalcon 1.3.2 to Phalcon 2 (Got a new Server so why use old stuff? :D)
Everything works fine, except my Session.
I set my session like this:
$this->session->set('data', array(
'time' => time(),
'plz' => $planet->getPlz(),
'design' => $user->getDesign(),
'alliance' => $user->getAllianceid(),
'back' => NULL
));
To access one of these I use this:
$this->session->get('data')['time'];
But how can I change my variables?
$this->session->set('data['time']', time()); // ???