Hi, I have a little problem with SID. If I write
the following code :
session_start();
printf('<a href="script.php?%s">Link</a>', SID);
(like the example in http://www.zend.com/zend/tut/session.php)
it give me the following link =
http://localhost/script?
As you can see the SID part is not there, but I know the
session as started because if I do :
echo $PHPSESSID;
it gives me the session id!! Any idea why?
Thanks.