in reply to Re^2: CGI: List all params
in thread CGI: List all params

foreach $name ( @names ) { if ( $name =~ /\_/ ) { next; } else { print "

".$name."\t=\t".$query->param($name) . "

\n"; } some thing like this you can do

Replies are listed 'Best First'.