Bekomme das mit serialize und unserialize irgendwie nicht hin. Mein Code:
$res2=$GLOBALS['TYPO3_DB']->exec_SELECTquery($select_fields,$from_table,$where_clause,$groupBy,$orderBy);
$GLOBALS['TSFE']->fe_user->setKey('ses','order',serialize($res2));
$GLOBALS["TSFE"]->storeSessionData();
$res2=unserialize($GLOBALS['TSFE']->fe_user->getKey('ses','order'));
Debug of res2 liefert: |0| obwohl 7 resultate gefunden in der query gefunden werden.
Was mache ich bitte falsch??? |