in reply to Re: A question regarding cookies
in thread A question regarding cookies

This can't work:
my $html_template = $self->param('html_template'); ... $html_template->process('home', ... );
So, where is the object supposed to come from? $html_template is, if set by the form, a string, so you're actually doing a class method call, most likely of a nonexistent package, and even if it exists, it most probably doesn't have a process method.

So there is where it goes wrong.

I think you still have to create a new html_template object from the parameter.

Replies are listed 'Best First'.
A reply falls below the community's threshold of quality. You may see it by logging in.