ok, let's say I have aa.php like this:
<?
session_start();
session_register("aa");
$aa="hello";
?>
<body>
<a href="bb.php" target="_bank">link</a>
</body>
PHPSESSID is automatically added to the link as a parameter like "bb.php?PHPSESSID=23423dsgfdasd4235423g2435". My question is: is this always automatic by php? Can it be turn on/off?