Help for this page

Select Code to Download


  1. or download this
    my @array = map { $q->param($_) } ( 'Job_ID', 'Inv_CLLI' );
    
  2. or download this
    my %h = map { $_ => $q->param($_) } ( 'Job_ID', 'Inv_CLLI' );
    
  3. or download this
    print join ',', @array;