我想更新会话值。我取消设置 Session 的旧值,然后想设置新值,该值通过查询保存在数据库中。执行查询后,我希望此会话 id 设置新的更新值。
if(($_GET['msg'] == 'yes')){
/********* Unset Session Value ******************/
unset($_SESSION['Auth']['User']['curreny']);
/*******Now how to update session value that is updated in the database by the query ************/
.........................
}