I want to access symfony session data from another php page based in a web directory.
I defined:
$this->getRequest()->getSession()->set('school', 'abc');
And I want to get ("school") in another php-page that existed in the web directory (and not in the controller). I searched Google for hours and tried many alternatives, but could not succeed.
source share