in reply to Constructing HTML tables with CGI.pm
This results in this table:#!/usr/local/bin/perl -w use strict; use CGI; my %host=( 'camel', 'flea', 'frog', 'green'); cgiout(); sub cgiout { my $q= new CGI; my $tablecontent=[$q->th(['key', 'value'])]; for (sort keys %host) { push @$tablecontent, $q->td([ $_, $host{$_} ]) ; } print $q->table( { border => 1, -width => '100%'}, $q->Tr( $tablecontent), ); }
| key | value |
|---|---|
| camel | flea |
| frog | green |
Update: Removed slightly snide comment open for misinterpretation.
CU
Robartes-
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Constructing HTML tables with CGI.pm
by sravs448 (Acolyte) on Sep 19, 2014 at 13:54 UTC |