in reply to HTML::Template data types problem
U have used this way. But try this way, which always works for us.$tmpl->param( content => [{ title=>'hi'...body=>'testing' }] );
U can use this logic to solve the issue...alter accordingly..push(@array, { title=>'hi',body=>'testing'}); $tmpl->param( content => \@array);
|
|---|