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? Link to comment https://forums.phpfreaks.com/topic/81198-session-from-asp-to-php/ 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. Link to comment https://forums.phpfreaks.com/topic/81198-session-from-asp-to-php/#findComment-412026 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.