B
Bing Du
Greetings,
I've used Spreadsheet::WriteExcel to generate a spreadsheet. Now I need
this spreadsheet to be viewable in web browsers. I can _not_ put any
files under the web server document root directory due to the privilege
restrictions. So this has failed my idea of creating a link on the web
page and making the link point to the spreadsheet.
The best place for me to store the sheet is in the /tmp directory. If I
use the following code to load my.xls into $bindata, how can I display
$bindata in its original spreadsheet format on the web?
======
$spreadsheet = "/tmp/my.xls";
open(F,$spreadsheet);
read(F,$bindata,-s F);
close(F);
======
I've checked Spreadsheet:arseExcel. But it's not what I want because
I don't want to extract information from my.xls.
Appreciate any ideas in advance.
Bing
I've used Spreadsheet::WriteExcel to generate a spreadsheet. Now I need
this spreadsheet to be viewable in web browsers. I can _not_ put any
files under the web server document root directory due to the privilege
restrictions. So this has failed my idea of creating a link on the web
page and making the link point to the spreadsheet.
The best place for me to store the sheet is in the /tmp directory. If I
use the following code to load my.xls into $bindata, how can I display
$bindata in its original spreadsheet format on the web?
======
$spreadsheet = "/tmp/my.xls";
open(F,$spreadsheet);
read(F,$bindata,-s F);
close(F);
======
I've checked Spreadsheet:arseExcel. But it's not what I want because
I don't want to extract information from my.xls.
Appreciate any ideas in advance.
Bing