Beefy Boxes and Bandwidth Generously Provided by pair Networks
No such thing as a small change
 
PerlMonks  

Re: Yet Another Stupid CGI Question

by buckaduck (Chaplain)
on Oct 19, 2001 at 16:17 UTC ( [id://119955]=note: print w/replies, xml ) Need Help??


in reply to Yet Another Stupid CGI Question

You can use the HTML::Table module:
use CGI ':standard'; use HTML::Table; my $table = new HTML::Table; foreach my $thing (@thingies) { my ($name,$cost,$number) = GetThingInfo($thing); $table->addRow( checkbox('checkboxname'), $name, $cost, $number, textfield('textname'), ); } $table->print;

buckaduck

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://119955]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others meditating upon the Monastery: (4)
As of 2024-04-24 19:50 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found