Re: [htmltmpl] H::T in mod_perl (probably FAQs)
Brought to you by:
samtregar
From: Sam T. <sa...@tr...> - 2003-12-10 16:15:40
|
On Wed, 10 Dec 2003, Emanuele wrote: > Apache::Request has a param() method that behaves much like the one from > CGI.pm query object, so it should work... > But unfortunately the only 'associate' example showed in the H::T pod > uses (only) CGI, hence my question. That depends on how similar Apache::Request's param() is to CGI.pm. HTML::Template uses two calls - one with no args to get all param names and the second with one arg to get the value for a parameter. If both those work then everything should be peachy. > A more general question(s): how do you use H::T in mod_perl? I use CGI::Application, either through Apache::Registry or in a custom mod_perl handler depending on the situation. > If so, do you know/use any (simple) mod_perl framework which could be > considered the pure mod_perl counterpart of CGI::Application? Huh? CGI::Application works great in mod_perl! -sam |