Help for this page

Select Code to Download


  1. or download this
    <form ...>
    <center><input type=submit value=Send name=S1></center>
    </form>
    
  2. or download this
    <form method="POST" action="http://.../submitq.cgi">
    <center><input type=submit value=Send name=S1></center>
    </form>
    
  3. or download this
        # When it is print
        # Redirect to another web page
    ...
            print BOBIN $datajoin;
            print redirect("http://.../submitq.cgi");
        }
    
  4. or download this
        if (param('S1') eq "Send") {
            print BOBIN $datajoin;
    ...
            }
            </form>
        }
    
  5. or download this
        # When it is print
        # Redirect to another web page
    ...
            print BOBIN $datajoin;
            print redirect("http://.../submitq.cgi");
        }
    
  6. or download this
        if (param('S1') eq "Send") {
            print BOBIN $datajoin;
    ...
            $ua->request(POST 'http://.../submitq.cgi', [ params ]);
            print the response.
        }
    
  7. or download this
    if (-e $datefile) {
        open (BOBIN, ">>$datefile") || die "Cannot Open File $datefile for
    + writing: $!"; # Open Data file
    ...
         open (BOBIN, ">$datefile") || die "Cannot create File $datefile f
    +or writing: $!";
    }
    
  8. or download this
    open (BOBIN, ">>$datefile") || die "Cannot Open File $datefile for
    + writing: $!"; # Open/Create Data file