> > I get this error: > > HTML::Template : Attempt to set nonexistent parameter 'path' > - this parameter name doesn't match any declarations in the > template file : (die_on_bad_params => 1) at templ.pl line 6 > > please help...
It's die'ing because die_on_bad_params is set, and you're passing a param which doesn't have a corresponding tag in the template. You can switch this behaviour off: my $template = HTML::Template->new(filename => 'your_template.tmpl', die_on_bad_params => 0); Kind regards, Ben ------------------------------------------------------- This SF.net email is sponsored by: SF.net Giveback Program. Does SourceForge.net help you be more productive? Does it help you create better code? SHARE THE LOVE, and help us help YOU! Click Here: http://sourceforge.net/donate/ _______________________________________________ Html-template-users mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/html-template-users