in reply to How can I set popup_menu parameters and send them to another page?

You could use a test results.cgi page to see the name and value of all the parameter sent like this ;
use strict; use CGI qw /:standard/; print header,start_html('results'); print h3("Parameters"); for (param){ print "$_ = ".param($_)."<br/>"; } print end_html;
poj
  • Comment on Re: How can I set popup_menu parameters and send them to another page?
  • Download Code