Hello,
I have compiled PHP 4.1.2 using the flag --enable-trans-id. The SID is not appending to the end of a URL. It works if I manually put <?=SID?> but I wanted to get the --enable-trans-id working. Any help would be appreciated. The exact code is pasted below:
<?php
session_start();
?>
<head>
<title>session_id test</title>
</head>
<body bgcolor="#ffffff">
<?php
$test_session = session_id();
echo $test_session;
?>
<br>
<a href="result.php">test</a>
</body>