Thread Perl - Excel - CGI (5 answers)
Opened by rucksl at 2004-06-15 15:22

renee
 2004-06-16 01:44
#2889 #2889
User since
2003-08-04
14371 Artikel
ModeratorIn
[Homepage] [default_avatar]
Vielleicht hilft auch das weiter:
Quote
You can also pass a valid filehandle to the new() constructor. For example in a CGI program you could do something like this:

binmode(STDOUT);
my $workbook = Spreadsheet::WriteExcel->new(\*STDOUT);
The requirement for binmode() is explained below.

For CGI programs you can also use the special Perl filename '-' which will redirect the output to STDOUT:

my $workbook = Spreadsheet::WriteExcel->new('-');

Aus der Doku auf CPAN (http://search.cpan.org/~jmcnam....xcel.pm)
OTRS-Erweiterungen (http://feature-addons.de/)
Frankfurt Perlmongers (http://frankfurt.pm/)
--

Unterlagen OTRS-Workshop 2012: http://otrs.perl-services.de/workshop.html
Perl-Entwicklung: http://perl-services.de/

View full thread Perl - Excel - CGI