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:
  1. Serialize the session data from ASP in a JSON string
  2. Store the JSON string in a database
  3. Read the JSON string from the database in PHP
  4. Deserialize the JSON string
  5. 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.