I may be missing something obvious, but I can't pull the session data into PHP using the obvious:
$var = $this->data['session_name'];
$var = $this->data['session_name']['var'];
$var = $this->var['session_name'];
(and a few other variations)
I can get the session data using {session:session_name.var} but wanted to use the data in a PHP if query - and it looks like it doesn't populate the {} content till afterwards.
Or is this not built in, and I have to pull the data using regular PHP?
Many thanks,
Nicholas.
$var = $this->data['session_name'];
$var = $this->data['session_name']['var'];
$var = $this->var['session_name'];
(and a few other variations)
I can get the session data using {session:session_name.var} but wanted to use the data in a PHP if query - and it looks like it doesn't populate the {} content till afterwards.
Or is this not built in, and I have to pull the data using regular PHP?
Many thanks,
Nicholas.