I have an ASP.NET login form which creates a session when successfully logged in. It uses POST.
I’d like to retrieve this session data in the PHP end but unsure how to achieve this.
The session name is ‘CUSTOMER_LOGGED_IN’.
I use ‘session_start()’ in the header of my PHP template to persist the session, which it does, but I’m unsure how to then display the session data in my PHP template.
Can anyone assist?
Many thanks for any pointers.
Your best bet is out of proc session that stores session information in an external storage such as sql database that both ASP.NET and PHP will have access.