bory has asked for the wisdom of the Perl Monks concerning the following question:
My problem is that i have no idea how to create submit.cgi so that i can read and print the entire row selected. Of course can be more then 1 row selected. I hope you understand me. Thank you for your time.print "<form method=\"post\" name=\"Fsubmit\" action=\"submit.cgi\">"; print "<br><br><center><table border=2>"; print "<th>Select</th><th>Field</th><th>Phase</th><th>Serverside</th>< +th>Statereaction</th><th>Productionon</th><th>Releaseproductsoff</th> +<th>onProjects</th><th>Deadlineok</th>"; foreach (@a){ print "<tr><td><input type=\"checkbox\" name=\"check\" ></td><td>$a[$_ +]></td><td>$b[$_]</td><td>$c[$_]</td><td>$d[$_]</td><td>$e[$_]</td><t +d>$f[$_]</td><td>$g[$_]</td><td>$h[$_]</td></tr>"; } print "</table>"; print "<INPUT TYPE=\"submit\" VALUE=\"OK\">";
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: How do I read a checkbox from a CGI
by jeffa (Bishop) on Sep 29, 2003 at 14:19 UTC | |
|
Re: How do I read a checkbox from a CGI
by jasonk (Parson) on Sep 29, 2003 at 14:17 UTC | |
|
Re: How do I read a checkbox from a CGI
by kutsu (Priest) on Sep 29, 2003 at 16:09 UTC |