sulfericacid has asked for the wisdom of the Perl Monks concerning the following question:
I'm not looking for someone to fix my script for me, just to tell me what I'm doing wrong. This is my first attempt at using tables so if everything is out of whack, it's not just because my brain's on vacation.
Another question I have is why doesn't CGI.pm on cpan cover tables and why are there zero nodes on perlmonks about using tables in CGI?
print start_form(), table( Tr(Td( "Email Address: ") Td(textfield('usermail')), Tr(Td("Author: ") Td(textfield('author')), Tr(Td("Distributor: ") Td(textfield('distributor')), Tr(Td("Copyright: "),textfield('copyright')), Tr(Td("Abstract: ") Td(textfield('abstract')), Tr(Td("Keywords: ") Td(textarea(-name=>'keywords', -rows=>10, -columns=>50)), Tr(Td("Description: ") Td(textarea(-name=>'description', -rows=>10, -columns=>50))), Tr(Td("Robots: ") Td(popup_menu(-name=>'robots', -values=>['','index','noindex','follow','nofollow']))), Tr(Td("Distribution: ") Td(popup_menu(-name=>'distribution', -values=>['','local','global']))), Tr(Td("Language: ") Td(popup_menu(-name=>'language', -values=>['','EN','EN-GB','EN-US','ES','ES-ES','FR','IT +','JA','KO','DE']))); Tr(Td("Rating: ") Td(popup_menu(-name=>'rating', -values=>['','kids','general','mature','restricted']))) +, Tr(Td()Td(), Tr(Td()(Td(submit)), ), end_form(), hr;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: CGI Tables, yippie!!
by robartes (Priest) on Apr 03, 2003 at 13:01 UTC | |
by sulfericacid (Deacon) on Apr 03, 2003 at 13:13 UTC | |
by Jost (Novice) on Apr 03, 2003 at 13:55 UTC | |
by VSarkiss (Monsignor) on Apr 03, 2003 at 15:20 UTC | |
by benn (Vicar) on Apr 03, 2003 at 13:33 UTC | |
by Anonymous Monk on Apr 04, 2003 at 12:33 UTC | |
|
Re: CGI Tables, yippie!!
by Thelonius (Priest) on Apr 03, 2003 at 13:02 UTC | |
|
Re: CGI Tables, yippie!!
by Jaap (Curate) on Apr 03, 2003 at 13:00 UTC | |
|
Re: CGI Tables, yippie!!
by cfreak (Chaplain) on Apr 03, 2003 at 15:46 UTC | |
|
Re: CGI Tables, yippie!!
by Coruscate (Sexton) on Apr 03, 2003 at 21:39 UTC | |
by sulfericacid (Deacon) on Apr 04, 2003 at 04:27 UTC | |
by Coruscate (Sexton) on Apr 04, 2003 at 08:30 UTC | |
|
Re: CGI Tables, yippie!!
by shotgunefx (Parson) on Apr 03, 2003 at 21:58 UTC |