On 11/10/05, Senthil Nathan <[EMAIL PROTECTED]> wrote:> Hi Roger,> > Thanks. That works now.> > This is how I did it,> foreach $instance(@diagnosis)
> {> my %row = (>
line => $instance> ); > push(@diag, \%row);>
Hi Roger,Thanks. That works now.This is how I did it, foreach $instance(@diagnosis) { my %row = ( line => $instance );
push(@diag, \%row); } $template->param(dign_loop => [EMAIL PROTECTED]);So, Can't
On Thu, Nov 10, 2005 at 05:57:51PM +0530, Senthil Nathan wrote:
>HTML::Template->output() : fatal error in loop output : HTML::Template :
>Attempt to get nonexistent parameter 'one' - this parameter name
>doesn'tmatch any declarations in the template file :
>(die_on_bad_params set => 1)
>at /usr/c
Hi All,I am using an HTML::Template module like this,perl script - contains, @diagnosis = ( "ONE", "TWO", "THREEE" ); $template->param(dign_loop => [EMAIL PROTECTED]);
And template, Im not getting the array being displayed. This is the error I get when I run it,
HTML::Templat