> So, HTML::Template is doing exactly what it's been told (I love it > btw :), but, PERL is starting to piss me off. Please please please, can > anyone give me a different method of generating dynamic tables, using > HTML::Template, or has come across this perl bug, or has some sort of > pointer for me?
You usually need to initialize the variable with an empty value, for
example:
my $hashref = {};
or
my %hash = ();
This will cause new memory to be allocated on each iteration, and the
hash will not be reused.
Stefan
smime.p7s
Description: S/MIME Cryptographic Signature
