in reply to How can I set popup_menu parameters and send them to another page?
use strict; use CGI qw /:standard/; print header,start_html('results'); print h3("Parameters"); for (param){ print "$_ = ".param($_)."<br/>"; } print end_html; [download]