Help for this page

Select Code to Download


  1. or download this
    # using Vars...
    use CGI;
    ...
            # Do something with $params->{$key}
        }
    }
    
  2. or download this
    # using param...
    use CGI;
    ...
    for (grep(/^\d+$/, $q->param)) {
        # Do something with $q->param($_)
    }