Hi,
How to read the asp.net session variable in PHP ? . Is it possible in PHP ? Please any one give me idea to solve this issue.
Thanks
How to Pass the ASP.NET Session to PHP Page?
Moderator: General Moderators
- Jonah Bron
- DevNet Master
- Posts: 2764
- Joined: Thu Mar 15, 2007 6:28 pm
- Location: Redding, California
Re: How to Pass the ASP.NET Session to PHP Page?
ASP and PHP sessions are not connected in any way. It is possible to do it manually though:
- Serialize the session data from ASP in a JSON string
- Store the JSON string in a database
- Read the JSON string from the database in PHP
- Deserialize the JSON string
- Place the data into the PHP session
Re: How to Pass the ASP.NET Session to PHP Page?
Ok Thanks for your kind reply . I will check now.