- or download this
my $question = {
descriptions => {
...
},
choices => [ qw/m f o/ ]
}
- or download this
for my $choice ( @{ $question->{choices} } ) {
my $text = $question->{descriptions}{$choice};
print qq[<option value="$choice">$text</option>\n];
}
- or download this
$valid = exists $question->{descriptions}{$answer};