|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2003-04-30 05:55 UTC] sniper@php.net
[2003-05-09 07:58 UTC] sniper@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Wed Oct 29 01:00:01 2025 UTC |
if I try this code with sesion.use.trans-sid enabled: <?php session_start(); ?> <a href="page.php">hello</a> the sessionID is appended to the link, if I don't accept cookies. But if I try this: <?php session_start(); ob_start("ob_gzhandler"); ?> <a href="script.php">hello</a> it doesn't work anymore. I know it works with setting of zlib.output_compression, but should that be the only way to do so?