in reply to Re: saving data locally in CGI script?
in thread saving data locally in CGI script?
Thanks! Your idea made this even more compact:
my $cgi = CGI->new(); my $s = "Hi, Mom!\n"; print $cgi->header(-type => 'text/csv', -attachment => 'filename.c +sv', -Content-length => length($s)); print $s;
Is it possible to generate the standard file-open dialog such that the filename can be changed?
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: saving data locally in CGI script?
by ikegami (Patriarch) on Jan 22, 2010 at 23:22 UTC | |
by Anonymous Monk on Jan 22, 2010 at 23:46 UTC | |
by ikegami (Patriarch) on Jan 23, 2010 at 00:42 UTC |