Below code is from php manual :
<?php
session_start();
<php?
the <?=SID?> is necessary to preserve the session id
in the case that the user has disabled cookies
?>
To continue, <A HREF="nextpage.php?<?=SID?>">click here</A>
i want to propagate session id through URL but There is nothing for SID.......what happen ??
if i try to display SID , "echo $SID", also
nothing...i can echo $phpsessid.....
which variable will php engine want ?
SID or PHPSESSID ???
thanks for ur help