Charlotte Hee <[EMAIL PROTECTED]> wrote:
: I tried replacing 'use CGI qw( :standard :html )' with
:
: print join ', ', @{ $CGI::EXPORT_TAGS{':standard'} };
:
: but that just gave me the error
: "Can't use an undefined value as an ARRAY reference at
: SUslac01test line 15."
:
: I'm not sure
On Sat, 16 Oct 2004, Charles K. Clarkson wrote:
> Date: Sat, 16 Oct 2004 07:51:36 -0500
> From: Charles K. Clarkson <[EMAIL PROTECTED]>
> To: 'Charlotte Hee' <[EMAIL PROTECTED]>, [EMAIL PROTECTED]
> Subject: RE: scrolling_list and multiples
>
>
Charlotte Hee <[EMAIL PROTECTED]> wrote:
: Here's the code:
:
: #!/usr/local/bin/perl -w
:
: use strict;
: use CGI qw(:standard :html3);
That's redundant.
print join ', ', @{ $CGI::EXPORT_TAGS{':standard'} };
: our(@catArray, $val, $url);
Don't use 'our' this way. Use 'my' to declar
Charlotte Hee wrote:
I want to allow the user to select more than one magazine so I
specify the option multiple=>1 for this. The web form seems to do
the right thing, highlighting more than one magazine if I hold the
ctrl-key down. But when I submit the form the parameters passed
only include my fi
Hello All,
I have a test form called pbauto, that displays 3 choices of magazines and
upon submit, calls itself to print out what parameters were passed. I want
to allow the user to select more than one magazine so I specify the
option multiple=>1 for this. The web form seems to do the right thi