Newbie

Andy Wardley abw at wardley.org
Thu Jul 5 15:56:28 BST 2007


Hi David,

You don't explicitly say so, but I assume you're using the CGI module?

In which case, use the appropriate named param() subroutine to fetch the 
value(s) submitted.  Something like this:

   my $selection = param('host_tech_file_selection');

   if ($selection) {
       # do something with $selection and generate response
   }
   else {
       # print form
   }

See 'perldoc CGI' for more info.

HTH
A




More information about the london.pm mailing list