Re: [htmltmpl] HTML::Template Loop Issue
Brought to you by:
samtregar
From: Lyle <web...@co...> - 2010-04-08 21:55:32
|
Problem with your hash scoping:- my @error = @_; my @error_loop = (); print header; foreach (@error) { my %error_data; $error_data{ERROR_DATA} = $_; push(@error_loop, \%error_data); } |