in reply to Re: CGI::Application and HTML::Template
in thread CGI::Application and HTML::Template

Regarding your comment, "PHP gives you every field of the form back as a variable with the same name!," so does CGI.pm. Try:

use CGI;
$query = new CGI;

# import form params into R namespace, default is 'Q'
$query->import_names('R');

see the perldoc for more info
  • Comment on Re: Re: CGI::Application and HTML::Template