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


-------------------------------------------------------
This SF.Net email is sponsored by:
Sybase ASE Linux Express Edition - download now for FREE
LinuxWorld Reader's Choice Award Winner for best database on Linux.
http://ads.osdn.com/?ad_id=5588&alloc_id=12065&op=click
_______________________________________________
Html-template-users mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/html-template-users

Reply via email to