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