Beefy Boxes and Bandwidth Generously Provided by pair Networks
Don't ask to ask, just ask
 
PerlMonks  

Re: Re: How can I display an entire MySQL table in Perl?

by Trimbach (Curate)
on Jan 02, 2002 at 04:07 UTC ( [id://135574]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    # html-table style
    print "<table>\n";
    ...
    }
    print "</table>\n";
    
  2. or download this
    use CGI qw(:standard *table);
    use CGI::Pretty; # For pretty-printed HTML
    ...
    print start_table;
    print Tr(td($_)) foreach @$rows;
    print end_table;
    

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others making s'mores by the fire in the courtyard of the Monastery: (3)
As of 2024-04-24 02:37 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found