I've been wondering about a thing.
On a page I got one checkbox.
But how can the script read if it's marked or not?
Is this possible?
@getemail = ("yes");
print <<EndHdr;
<html><head><title>My page</title></head>
<body bgcolor=$bgcolor text=$text link=$link>
<center> <h2>Thank you!</h2> </center> <p>
Thanks for your comment.<br>
EndHdr
foreach $x (@getemail) {
if ($FORM{$x} == 1) {
print "You marked.\n";
}
}
print <<EndFooter;
Here's the footer!<br>
<a href=\"index.html\">home page</a>
</body></html>
EndFooter
???
Just wondering...
On a page I got one checkbox.
But how can the script read if it's marked or not?
Is this possible?
@getemail = ("yes");
print <<EndHdr;
<html><head><title>My page</title></head>
<body bgcolor=$bgcolor text=$text link=$link>
<center> <h2>Thank you!</h2> </center> <p>
Thanks for your comment.<br>
EndHdr
foreach $x (@getemail) {
if ($FORM{$x} == 1) {
print "You marked.\n";
}
}
print <<EndFooter;
Here's the footer!<br>
<a href=\"index.html\">home page</a>
</body></html>
EndFooter
???
Just wondering...


