I should add, that I also tried the code with session_start() first, then
ob_start('gz_handler') -- neither way worked.

Jason


"Jason Caldwell" <[EMAIL PROTECTED]> wrote in message
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
> Is there a way to make ob_start('gz_handler') work with session_start()?
>
> I got them each working independently -- however, when I try to compress a
> session -- my page just comes up blank.
>
> <?
>     ob_start('gz_handler');
>     session_start();
>
>     // code and html
>
>     ob_end_flush();
>     ob_end_clean();
> ?>
>
> Or, is there another alternative? -- I'd like to use sessions and I'd
> (definitely) like to compress my pages.
>
> Thanks
> Jason
>
>
>



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to