Please correct me if I'm wrong, but when using transparent sessions, ie --enable-trans-sid, so that you don't need to worry about whether the user accepted your session cookie, there is no way to change the resulting link that PHP autogenerates?
The problem, php appends "&PHPSESSID=foo" to all internal links. However, to be valid XHTML the & needs to be converted to its entity &. I can easily do this conversion with str_replace, but that's always before PHP works its magic.....
Transparent session issues....
Moderator: General Moderators
- hob_goblin
- Forum Regular
- Posts: 978
- Joined: Sun Apr 28, 2002 9:53 pm
- Contact:
I found that, if i did something like
<a href="file.php" target="_self">Valid link</a>
it would append the whole deal.. but if i did this:
<a href="http://mydomain.com/file.php" target="_self">Valid Link</a>
it wouldn't, odd. I'll ask my host about that so i don't have to type the whole deal
<a href="file.php" target="_self">Valid link</a>
it would append the whole deal.. but if i did this:
<a href="http://mydomain.com/file.php" target="_self">Valid Link</a>
it wouldn't, odd. I'll ask my host about that so i don't have to type the whole deal