in reply to Converting large numbers of checkboxes to small number of params
That generates code almost exactly like the current code. Of course you need to add the beginning of the form, and the table headers, a any formating options.my @Days = ("Monday","Tuesday","Wednesday","Thursday","Friday","Saturd +ay","Sunday"); my $html; foreach my $Day (@Days) { $html .= "<tr>\n\t<td>$Day</td>\n"; foreach (1...15) { $html .= "\t<td><input type=checkbox name=$Day$_></td>\n"; } $html .= "</tr>\n"; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Converting large numbers of checkboxes to small number of params
by MrCromeDome (Deacon) on Jul 09, 2003 at 20:52 UTC |