Same as the topic… how about setting and getting values from sessions?
Same as the topic… how about setting and getting values from sessions?
there's no support through controller or request? do i have to load that object each time ?
Set session value:
Yii::app()->session[$name]=$value;
Get session value:
$value=Yii::app()->session[$name];
Note, 'session' is an app component.