Yes, i know about that -enable-trans-sid thing but i didn't get it to work though.
This is the code i have been testing been so far..
if($PHPSESSID == "") {
session_start();
$Query = "INSERT INTO session VALUES('" . session_id() . "', now())";
mysql_query($Query ,$mysql_link);
header("Location: first.php3?" . SID . "");
} else {
$Query = "UPDATE session SET LastAction=now() WHERE ID='$PHPSESSID'";
mysql_query($Query, $mysql_link);
}
print("Move on: <a href=\"first.php3\">here</a>");
But the SID are not added to that link in the end, what's wrong then ?