how do I implement a session variable like
$GLOBALS['TSFE']->fe_user->setKey('ses','country',$country);
$GLOBALS['TSFE']->storeSessionData();
...
$x = $GLOBALS['TSFE']->fe_user->getKey('ses','country');
in TYPO3 10.4?
how do I implement a session variable like
$GLOBALS['TSFE']->fe_user->setKey('ses','country',$country);
$GLOBALS['TSFE']->storeSessionData();
...
$x = $GLOBALS['TSFE']->fe_user->getKey('ses','country');
in TYPO3 10.4?
Hello you just have to replace $GLOBALS['TSFE']->storeSessionData();
with $GLOBALS['TSFE']->fe_user->storeSessionData();