Jump to content

session from asp to php


ccrevcypsys

Recommended Posts

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.

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.