Help for this page

Select Code to Download


  1. or download this
    # (merging previous post)
    my @sorted_indices = sort {$a <=> $b} keys %upload;
    my %lookup_hash;
    @lookup_hash{@sorted_indices} = 0 .. $#sorted_indices;
    
  2. or download this
    my $i = $lookup_hash{5};
    print $x,"\n"; # prints 2
    ...
    
    # get your image
    my $image = $uploads{$next};