http://www.perlmonks.org?node_id=794273


in reply to checkbox query in CGI

It's hard to tell what part you are having trouble with, so I'm just going to take wild guess. Assuming you have a checkbox in each column, like:
<input type="checkbox" name="T1" value="row1"> <input type="checkbox" name="T1" value="row2"> <input type="checkbox" name="T1" value="row3"> ...
in perl, you would get a list of the values for which the checkbox is checked by @values = CGI::param("T1");
--
A math joke: r = | |csc(θ)|+|sec(θ)|-||csc(θ)|-|sec(θ)|| |
Online Fortune Cookie Search
Office Space merchandise

Replies are listed 'Best First'.
Re^2: checkbox query in CGI
by RajNaidu (Novice) on Sep 10, 2009 at 04:51 UTC
    Hi, Thanks for the reply. I have two CGI forms, basically. The values checked in one form should be made visible in the other form. Is there a way in CGI to achieve this. -Rajini
      Yes. The simplest way is to have the form action for the first form be a CGI script that generates the second form, doing whatever it needs to do to make the values visible. You probably want to read the CGI doc and look at some examples, then try to write the code.
      --
      A math joke: r = | |csc(θ)|+|sec(θ)|-||csc(θ)|-|sec(θ)|| |
      Online Fortune Cookie Search
      Office Space merchandise