in reply to Re: Form with Table - FormBuilder, map, or template?
in thread Form with Table - FormBuilder, map, or template?
To explain, I want to create a table (of some hundreds of rows), with 5 columns (as in the 'th' table caption). The columns need to have the following format: 1. Checkbox 2. Text (static) 3. Text (static) 4. Combobox (values 0-6) 5. Combobox (values 0-6) The idea is to let a user administer his / hers cd-collection, by removing and "rank" the cds. This is just the HTML-part of a larger project, unfortunately I hate HTML with passion, so I've never bothered to learn any, and now I'm suffering the consequences. Oh, and this is a hobby-project btw, not work-related. All I've got left is to fix the web-interface, and register a domain for the "thingy".<snipp> ... my $cds = table caption ('CD Collection for user ' . $username), Tr (th ([qw(Remove? Artist Album CD_vote ArtistCD_vote)])), map { Tr ( td ([$r_user_collection->{$_}{'cd_artist'}]), td ([$r_user_collection->{$_}{'cd_title'}]), ), } keys %{ $r_user_collection }; $MAIN_CONTENT .= "<br>" . $cds . "<br>"; ... <schnapp-ety-schnapp>
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Re: Form with Table - FormBuilder, map, or template?
by matija (Priest) on Mar 10, 2004 at 23:45 UTC | |
by Anonymous Monk on Mar 11, 2004 at 00:34 UTC | |
by Anonymous Monk on Mar 11, 2004 at 21:05 UTC |