Hi

I just rewrote a website to use sessions all over the site. on one page
i used
output-compression just to test it. if i use MSIE everything just works
fine, BUT:
if i use Netscape WITHOUT cookies the PHP does not rewrite the relative
urls....
here is the code of the page :

session_start();
function my_obstart() {
$encoding = getenv("HTTP_ACCEPT_ENCODING");
if (eregi("gzip",$encoding))
{
ob_start("ob_gzhandler");
} else
{
ob_start();
}
}
my_obstart();
...
...

i can't view the html-source-code when using netscape and compression,
so i don't
know exactly what arrives at the browser....

thanks

Sebastian 

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to