Help for this page

Select Code to Download


  1. or download this
    my @loop_data=();
    $loop_data=[
    ...
        {Auction=>'Test4', ID=>'4'},
    ];
    $template->param(table1 => \@loop_data);
    
  2. or download this
    my @loop_data=();
    my %rowdat;
    ...
    $rowdat{ID}='1';
    push(@loop_data, \%rowdat);
    $template->param(table1 => \@loop_data);