--- Dermot Paikkos <[EMAIL PROTECTED]> wrote:
> I still get the error if I remove those lines:
> 1 #!/usr/bin/perl -w
> 2
> 3 use strict;
> 4
> 5 use CGI qw\standard cgi-lib\;
> 6 use CGI::Carp qw(fatalsToBrowser);
> 7
> 8 $CGI::POST_MAX = 1024 * 1000;
Hi ,
I am trying to dynamically change file name of an html
that is generated through a cgi script, I know that
for it is easy to do this for other type of files such
as pdf or csv which we download and save , we can use
"Content-Disposition: attachment; filename =
"abc.pdf"" to change the file na
On 24 Oct 2005 at 11:48, Ovid wrote:
> > I am trying to access the parameter list from a form. I keep getting
> > a "Not an ARRAY reference at (eval...)". The error seems to refer to
> >
> > my @names = $q->param;
>
> I suspect you're off by a couple of lines:
>
> my @names = $q->param;
>