in reply to cgi.pm param method help

... and don't you forget it ;-)

You can load many form variables to an array like this:
my @array = map { $q->param($_) } ( 'Job_ID', 'Inv_CLLI' );

Or into a hash:
my %h = map { $_ => $q->param($_) } ( 'Job_ID', 'Inv_CLLI' );

Then print a set of values in one line using join:
print join ',', @array;


-mk