PHP - Session per Tab
问题 Is it possible to make sessions per Browser tabs? As example a user opened 2 tabs in his browser: Tab 1 and Tab 2 In Tab 1 he has a session: $_SESSION['xxx'] = 'lorem'; And in Tab 2 the session is: $_SESSION['xxx'] = 'ipsum'; Now on refresh i need to get the current session in the active tab. For example if the user refreshes Tab 2 i need to get the $_SESSION['xxx'] for tab 2 on load which is 'ipsum'. But $_SESSION['xxx'] shouldn't change on Tab 1. Is there any option to save sessions per tab