I would guess before any output to the browser... so nearer the top the better

Andrew
"Daniel Swarbrick" <[EMAIL PROTECTED]> wrote in message 
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
> Can someone please confirm the correct place to call
> ob_start("ob_gzhandler") in a script? I am using sessions also, and the
> start of my scripts is like so:
> 
> <?php
>         require_once("DB.php");
>         include("lib.inc.php");
> 
>         session_start();
>         if ( ! $_SESSION[sess_auth]) {
>                 header("location: index.php");
>                 exit();
>         }
> 
>         $db = DB::connect($conn_str, TRUE);
>         $db->setFetchMode(DB_FETCHMODE_OBJECT);
> 
>         // rest of script
> ?>
> 
> 
> 

Reply via email to