I am a real novice (3 hours experience). However, ...
I can read and use all the simple forms that return one value but can't handle Checkbox forms when the user makes more than one choice.
I think that the browser sends the information as 'choice=box1' then 'choice=box2' if NAME=choice and VALUE=box1 or box2 in the HTML code.
my $choice= $q->param( "choice");
gives me only the first VALUE as far as I can tell.
How do I get all the values?
Thanks