Beefy Boxes and Bandwidth Generously Provided by pair Networks
more useful options
 
PerlMonks  

Passing 'SELECT MULTIPLE' parameters and CGI

by viffer (Beadle)
on Aug 17, 2010 at 14:16 UTC ( [id://855496]=perlquestion: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    <form action="post" name="RunForm">
    <input id="env" type="hidden" name="env" value="PROD"/>
    ...
    <input type="reset" value="Cancel" name="Cancel"/>
    </p>
    </form>
    
  2. or download this
    function UntarFiles() {
        if (document.RunForm.runs.selectedIndex==-1)
    ...
    
        request.send(null);
    }
    
  3. or download this
    use CGI qw(:standard);
    use CGI::Carp qw(fatalsToBrowser);
    
    ...
          
    $env = param('env');
    @runs = $query->param('runs');
    
  4. or download this
    atlanta_combine_postscript.cgi?&env=PROD&runs=2010-08-17 ----- 039733
    

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: perlquestion [id://855496]
Approved by Corion
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others scrutinizing the Monastery: (7)
As of 2024-04-24 08:56 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found