in reply to fetch html input as hash

Do you mean CGI.pm? If so, you can just iterate over them:
use CGI qw(param upload); # and whatever else you want to import ... for my $key (param()) { next unless $key =~ m{^img\[(.*)\]$}; my $image_key = $1; my $image_filename = param($key); my $image_handle = upload($key); # do what you want with $image_key and $image_filename and $image_ha +ndle }

-- Randal L. Schwartz, Perl hacker

The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT", "SHOULD", "SHOULD NOT", "RECOMMENDED", "MAY", and "OPTIONAL" in this document are to be interpreted as described in RFC 2119.