RE: Looping over field containing checkboxes

2000-08-15 Thread Philip Arnold - ASP
> I have a loop over all formfields. One formfield, pos, which contains > checkboxes, ends up being looped over *per checkbox*. In other words, if > pos contains 34,36,42 and I loop over it, I get pos three times, > each time > containing 34,36,42. Is something wrong with my code? Is there > a

Re: Looping over field containing checkboxes

2000-08-15 Thread Deanna L. Schneider
Try something like this. You're passing a comma-delimited list when you pass checkboxes with the same name. -d Deanna Schneider Interactive Media Developer UWEX Cooperative Extension Electronic Publishing Group 103 Extensio

Looping over field containing checkboxes

2000-08-15 Thread andrew kopelman
I have a loop over all formfields. One formfield, pos, which contains checkboxes, ends up being looped over *per checkbox*. In other words, if pos contains 34,36,42 and I loop over it, I get pos three times, each time containing 34,36,42. Is something wrong with my code? Is there a another