BMaximus has asked for the wisdom of the Perl Monks concerning the following question:
Is there a better way of getting all of the fields into a hash to be given to HTML::FormValidator to mull over? If I use CGI; along with mod_perl and use the Vars() subroutine to get what I want. Would there be any side effects from doing so? (i.e. CGI intereferes with Apache::Request so it can't do its job) Could using hash slices do the job without bringing CGI in to it?# $apr is an Apache::Request object with $apr->parse() # already called. my %params; $params{'text_field'} = $apr->param('text_field'); $params{'text_field2'} = $apr->param('text_field2'); ...
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Just a wee bit o' mod_perl
by Masem (Monsignor) on Apr 22, 2001 at 06:00 UTC | |
by BMaximus (Chaplain) on Apr 22, 2001 at 06:32 UTC |