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
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
> 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