in reply to Expanding variables inside the CGI module

A simpler answer to your question is best describe with this example :):
sub Handle_Media { my $name = shift; my @Files = $q->param($name."_files"); my @Delete = $q->param($name."_DEL"); ## more }
Which is probably what you wanted, yes?

still ... asleep ... must ... coffee ...

Replies are listed 'Best First'.
Re: Re: Expanding variables inside the CGI module
by filmo (Scribe) on Mar 04, 2001 at 01:12 UTC
    Many thanks, mr.nick's was exactly what I'm looking for. Seems so obvious now, but isn't that always the case. And yes, I'm learning to use STRICT... -- Filmo the Klown