in reply to Easy CGI Question

I believe if you wanted to loop through them, you could simply do:
foreach my $i ( param() ){ ... }
All posts are spawns of an archaeic and instinctual remnant of pre-neanderthalian neural synapse that, while irrevocably human, remains an anomoly to the common laws of nature.

Replies are listed 'Best First'.
Re^2: Easy CGI Question
by csuhockey3 (Curate) on Jul 12, 2004 at 16:50 UTC
    This will work only for SINGLE-values
    foreach my $n ($query->param) { $param{$n} = $query->param($n); }
    try this too:
    my( %param )= @_;

    CSUhockey3