nop has asked for the wisdom of the Perl Monks concerning the following question:
use strict; use Spreadsheet::WriteExcel 0.31; use IO::Scalar; use CGI qw(:standard); print header('application/vnd.ms-excel'); my $xls_str; tie *XLS, 'IO::Scalar', \$xls_str; my $wb = Spreadsheet::WriteExcel->new(\*XLS); my $ws = $wb->addworksheet(); $ws->write(0, 0, "Hi Excel!"); $wb->close(); binmode(STDOUT); print $xls_str;
|
---|
Replies are listed 'Best First'. | |
---|---|
(tye)Re: Spreadsheet::WriteExcel to Browser Problem
by tye (Sage) on May 02, 2001 at 00:20 UTC | |
by nop (Hermit) on May 02, 2001 at 05:39 UTC | |
by tye (Sage) on May 02, 2001 at 06:25 UTC | |
Re: Spreadsheet::WriteExcel to Browser Problem
by jmcnamara (Monsignor) on May 02, 2001 at 01:46 UTC | |
Re: Spreadsheet::WriteExcel to Browser Problem
by dws (Chancellor) on May 02, 2001 at 00:00 UTC |