RE: scrolling_list and multiples

2004-10-22 Thread Charles K. Clarkson
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

RE: scrolling_list and multiples

2004-10-20 Thread Charlotte Hee
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 > >

RE: scrolling_list and multiples

2004-10-16 Thread Charles K. Clarkson
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

Re: scrolling_list and multiples

2004-10-14 Thread Gunnar Hjalmarsson
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

scrolling_list and multiples

2004-10-14 Thread Charlotte Hee
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