in reply to label usage

Try changing
%labels=('1=>a', '2=>b', '3=>c');
to
%labels =( 1=>'a', 2=>'b', 3=>'c');
Also, I recommend turning on warnings and strict.
--
bm

Replies are listed 'Best First'.
Re: Re: label usage
by Anonymous Monk on Aug 18, 2003 at 17:23 UTC
    thanks .. it works ... but from within my script, how can I determine which selections were made by the user?
      use CGI; my $cgi = new CGI; my @letters = $cgi->param('avletters'); print "The user selected: "; print "$_\n" foreach(@letters);