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