Re: [htmltmpl] [Question] Clearing <TMPL_LOOP> content after first pass
Brought to you by:
samtregar
From: Sam T. <sa...@tr...> - 2004-05-21 17:50:11
|
On Fri, 21 May 2004, C Hagstrom wrote: > my $res = $sth->fetchall_arrayref({}); > > ................... > > assign it to a parameter: > > $q->param(res => $res); Surely that should be: $template->param(res => $res); There's no reason to give CGI::param() an array of hash-refs, is there? -sam |