How to a grab data from a multiple checkbox type scenario.
Ex:
Say I have:
<INPUT type=checkbox name=x value=1>
<INPUT type=checkbox name=x value=2>
<INPUT type=checkbox name=x value=3>
I then do this: (use CGI.pm for this example)
my $selections = $q->param("x");
print "$selections<BR>\n";
It only prints the last checkbox check, not all of the checked boxes. Is
there a trick around this?
Thanks,
CC
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
