When I add a Link to another page on my site -- the Session info is automatically appended to the link -- I can see how this would be cool... but in my case, it kinda sucks...
Here's what I discovered:
If I just add the page (in the link) like so, <a href="_myPage.php">Click Here</a>
The session info will be appended.
If instead, I add the full path, like so --
<a href="http://127.0.0.1/_myPage.php">Click Here</a>
The session info isn't appended...
I want it so that the session info ISN'T appended but don't want to type the entire URL... just the page. (for example: <a href="_myPage.php"></a>
Now -- I'm aware of the PHP.INI setting called: session.use_trans_sid (mine is set to = 1) -- if I turn this off will I just be forced to append the SID info to the end of all my FORM and HREF links?
Thanks.
Jason