Help for this page

Select Code to Download


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