in reply to Re: HTML::Template and hash o' links+labels
in thread HTML::Template and hash o' links+labels
Though I think it is easier to construct @loop_data during your loop over then hash keys instead of creating two lists in the loop and then looping over their elements.# while (@label_list) { $row_data{'LABEL'} = shift @label_list; $row_data{'URL'} = shift @url_list; push( @loop_data, \%rowdata ); # }
|
|---|