hello,
I've a little problem.
I try to embed the session ID into an URL.
ini_set('session.use_cookies',0);
ini_set('session.use_trans_sid',1);
session_start();
if (!isset($SESSION['a']))
$SESSION['a']=999;
else
echo $_SESSION['a'];
On the localhost (IIS 5.0), after two calls, the script doesn't display anything. On a remote server(IIS 5.0), it displays the value 999, but in the URL doesn't appear anything.
My question:
Where is sent the session ID when I set the passing-method on URL ?