Help for this page

Select Code to Download


  1. or download this
    #!perl
    # Dumper demo cgi
    ...
    print '<h2>@error</h2>';
    print Dumper @error;
    print '<hr/>';
    
  2. or download this
    my @array = @$resultsRef
    foreach my $hit (@array) {
    ...
      my %hash = %$hit;
      push @searched, $hash{ID};
    }