in reply to HTML::Template data types problem

Hai,
$tmpl->param( content => [{ title=>'hi'...body=>'testing' }] );
U have used this way.
But try this way, which always works for us.
push(@array, { title=>'hi',body=>'testing'}); $tmpl->param( content => \@array);
U can use this logic to solve the issue...alter accordingly..
prasanna.k