Hi,
I'm developing an extension to an already established php site and want to use transparent SID support (--enable-trans-sid) so that I can keep session info and not have to rely on cookies.
I've noticed, however, that the SID will only be automatically added to a href if the href is of the form <a href="page.phtml">. Since the majority of my site is a php site, I made the decision to print out all my html, and to save on esc chars, made all my hrefs <a href='page.phtml'>. This very little thing stops the SID being apended automatically and breaks everything.
I only plumped for the --enable-trans-sid to get around the very problem of changing every href to include something like ?$extralinkinfo so that I may extend it as and when.
Any help/advice/confirmation would be appreciated. BTW I also posted this to http://www.phpbuilder.com/columns/ying20000602.php3 before i discovered this forum.