Re: [htmltmpl] .tmpl page not rendering on screen
Brought to you by:
samtregar
From: Offer K. <off...@gm...> - 2004-11-09 22:53:12
|
On Tue, 09 Nov 2004 14:25:44 -0600, Brad Cathey wrote: > > Perl: > > use HTML::Template; > > my $template; > > $template = HTML::Template->new(filename => '../admin/menu.tmpl'); > $template -> param(facultylist=> $teacherdata ); > Try setting die_on_bad_params to 0 and see what happens, e.g.: $template = HTML::Template->new( filename => '../admin/menu.tmpl', die_on_bad_params => 0, ); -- Offer Kaye |