Page 1 of 1
How to Pass the ASP.NET Session to PHP Page?
Posted: Wed Dec 22, 2010 6:43 am
by tamilmani
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
Re: How to Pass the ASP.NET Session to PHP Page?
Posted: Wed Dec 22, 2010 11:05 pm
by Jonah Bron
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?
Posted: Wed Dec 22, 2010 11:27 pm
by tamilmani
Ok Thanks for your kind reply . I will check now.