in reply to Re: Re: Handling Dynamic URL Parameters
in thread Handling Dynamic URL Parameters

How would I get the parameter name?

if you're using CGI.pm, you can get the parameter list by calling the param method without arguments:
my $q = new CGI; my @params = $q->param();

FWIW, I'd go with the  num_of_lines=5&item_num_1=1234&item_num_2=4562... approach.

-- Dan