Help for this page

Select Code to Download


  1. or download this
    my $data = decode_json( $json );
    my $definition= $data->{'myData'};
    ...
        foreach my $record (@definition) {
             print $record->{Lang4};
        }
    
  2. or download this
        while (my $row = $sth->fetchrow_hashref) {
            push @definition, $row;
        }
    print objToJson( { myData => \@definition} );