in reply to Re: How can I unzip certain file in zip file?
in thread How can I unzip certain file in zip file?

Since under CGI you have named parameters instead positional parameters, you'll have to restruture your code to extract the parameters at the top of your script. Also in your for loop instead of looping on @ARGV, you would instead loop on the array in your querystring.
# at the top to load your parameters # call the script as script.pl?zipName=blah&members=abc&members=xyz my $zipName = $cgi->param('zipName'); my @members = $cgi->param('members'); print 'usage message' unless $zipName and @members

--
integral, resident of freenode's #perl