Re: Getting data from multiple check boxes

2001-10-12 Thread Chuck
]> Sent: Friday, October 12, 2001 3:36 PM Subject: Re: Getting data from multiple check boxes > --- Chuck <[EMAIL PROTECTED]> wrote: > > > > How to a grab data from a multiple checkbox type scenario. > > > > Ex: > > > > Say I have: > > &g

Re: Getting data from multiple check boxes

2001-10-12 Thread Curtis Poe
--- Chuck <[EMAIL PROTECTED]> wrote: > > How to a grab data from a multiple checkbox type scenario. > > Ex: > > Say I have: > > > > > I then do this: (use CGI.pm for this example) > > my $selections = $q->param("x"); > print "$selections\n"; > > It only prints the last checkbox check, not

Getting data from multiple check boxes

2001-10-12 Thread Chuck
How to a grab data from a multiple checkbox type scenario. Ex: Say I have: I then do this: (use CGI.pm for this example) my $selections = $q->param("x"); print "$selections\n"; It only prints the last checkbox check, not all of the checked boxes. Is there a trick around this? Thanks, CC