[PHP] header-sending misbehaving

2002-05-13 Thread erich
suppose i want to login to a privileged area sending header info to browser, however, i get header warning as follows when i go to a db system named eskuel: Warning: Cannot add header information - headers already sent by (output started at g:\wwwroot\vauth\auth.php:5) in g:\wwwroot\eskuel\main.ph

Re: [PHP] header-sending misbehaving

2002-05-13 Thread Jason Wong
On Monday 13 May 2002 23:47, erich wrote: > suppose i want to login to a privileged area sending header info to > browser, however, i get header warning as follows when i go to a db system > named eskuel: > Warning: Cannot add header information - headers already sent by (output > started at g:\ww

Re: [PHP] header-sending misbehaving

2002-05-13 Thread 1LT John W. Holmes
> On Monday 13 May 2002 23:47, erich wrote: > > suppose i want to login to a privileged area sending header info to > > browser, however, i get header warning as follows when i go to a db system > > named eskuel: > > Warning: Cannot add header information - headers already sent by (output > > star

Re: [PHP] header-sending misbehaving

2002-05-18 Thread erich
jason wong what is meant by output buffering? what PHP function(s) can support output buffer? thanks erich -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] header-sending misbehaving

2002-05-18 Thread Jason Wong
On Sunday 19 May 2002 00:54, erich wrote: > what is meant by output buffering? what PHP function(s) can > support output buffer? The standard behaviour of PHP is to output stuff to the browser as soon as it's ready (more or less). By using the "Output Control Functions" (see ma