How to get the session value on extension folder?
How to get the session value on extension folder?
you should be able to get session value as normal
Yii::app()->session['var']
Yii::app()->session->get(‘var’), should return ‘val’ value or null if it’s not defined
Yii::app()->session->remove(‘var’), should return ‘val’ value and also unset ‘val’
http://www.yiiframework.com/doc/api/1.1/CHttpSession#get-detail
http://www.yiiframework.com/doc/api/1.1/CHttpSession#remove-detail
Many Many thanks for everything