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
?>
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

