Hey Friends,
I'm having a jot of difficulty conceptualizing this implementation of a CGI program. I'm just starting out with CGI here, so if I am blatantly overlooking something, go easy on me. I have "CGI Programming with Perl", but can't seem to find the solution to my question. Here's the code, explanation follows:
sub cgiOut {
my $q = new CGI;
print $q->header( "text/plain" ),
$q->start_html( -title=>"Apache Stats for $hostname",
-bgcolor=>"#ffffff"),
$q->h2( "Apache Stats for $hostname" ),
$q->hr,
$q->table( { -broder=>"1", -width=>"100%" },
$q->Tr( [
for(sort keys %host) {
??? RIGHT HERE ???
}
print $q->end_html;
}
You see, I am trying to insert table data consisting of the key and value of %host (at 'RIGHT HERE'), but this implementation is screwy. I have opened up the Tr section, but what next? That for loop comes into play while print is still outputting to stdout. I hope I have been clear in my inquiry, I'm a bit fouled up here!
Thanks Kindly,
Lacertus
------------------------------------
"There is more in heaven and earth
than is dreamt of in your philosophy"
edited: Fri Mar 28 20:41:18 2003
by jeffa - title change (was: CGI Heeby Jeebies)
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.