I want to use PHP session variables without cookies. I have got sid turned on in the php.ini and it is being appended to the URL automatically when I click on href links in my website.
The problem is using php pages that redirect the user automatically. How do I append the sid to the URL in those cases?
So let's say I use a header like this:
header("Location: test.php")
There must be a way to append the sid to that URL?
Thanks heaps!