recently I encounter a very strange behaviour of the session variable. if the cookies are disabled, the session id is totally misplaced (see code). instead being attached to the URL it is placed before the > of the anchor tag. has anyone an idea, how to prevent that?
maybe I should note, that the HTML is coming from a XSL transformation…
and another note, if the anchor element contains a text node, the variable insertion is correct.
maybe I should note, that the HTML is coming from a XSL transformation…
and another note, if the anchor element contains a text node, the variable insertion is correct.
Code:
// with session ID <a href="main.php?f=this"/&PHPSESSID=23…b3> // without session ID <a href="main.php?f=this"/>
Comment