Re: Buffering Output

2001-07-31 Thread Stas Bekman
On Tue, 31 Jul 2001, raptor wrote: > Anybody know if exist some module how CGI::Out for buffering output in CGI > script ? > > ]- The other approach if U don't want to append to var...then U can do > something like this : > > my $buffer; > sub xprint { $buffer .= @_ }; > possibly U will want to

Re: Buffering Output

2001-07-31 Thread raptor
Anybody know if exist some module how CGI::Out for buffering output in CGI script ? ]- The other approach if U don't want to append to var...then U can do something like this : my $buffer; sub xprint { $buffer .= @_ }; possibly U will want to move this code into separate module...!! then use

Re: Buffering Output

2001-07-31 Thread Perrin Harkins
> Anybody know if exist some module how CGI::Out for buffering output in CGI script ? Is there a reason you can't just append everything to a variable until the end? If that won't work, you can tie STDOUT. Apache::Filter might help. - Perrin