ccrevcypsys Posted December 11, 2007 Share Posted December 11, 2007 is there a way that i can use both php and asp on my site. So that i can switch over a session to a new php admin page? Quote Link to comment Share on other sites More sharing options...
cooldude832 Posted December 11, 2007 Share Posted December 11, 2007 sessions are stored server side, I do not know asp's way of doing it, but I can only assume each concurrent user is given a "session_id" as is done in php, and that the session data is just chilling there try making a session in asp.net and then in php do this <?php session_Start(); print_r($_SESSION); ?> and see what you get, the variable syntax might be a bit off, but it should work. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.