Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
    foreach(keys %$form) {
       print "$_ = $form->param($_}\n";
    }
    
  2. or download this
    use strict;
    use warnings;
    ...
    foreach(keys %{$form->param}) {
       print "$_ = $form->param($_}\n";
    }