Typo3 Extbase Set and Get values from Session

后端 未结 3 434
有刺的猬
有刺的猬 2020-12-19 16:36

I am writing an extbase extension on typo3 v6.1 That extension suppose to do a bus ticket booking. Here what my plan is, user will select date and number of seats and submit

3条回答
  •  太阳男子
    2020-12-19 17:07

    There are different ways. The simplest would be for writing in the session

    $GLOBALS['TSFE']->fe_user->setKey("ses","key",$value)
    

    and for reading values from the session

    $GLOBALS["TSFE"]->fe_user->getKey("ses","key")
    

提交回复
热议问题