in reply to perl loops + html tables

Just thought I'd mention a module that a recently discovered that is quite handy with tables, HTML::QuickTable. I use it by looping through some records and populating a hash with some of the information.

$Foo{ Bar }{ Baz } = "Value 1"; $Foo{ Bar }{ Quux } = "Value 2"; $Foo{ MoreBar }{ Baz } = "Value 3";

HTML::QuickTable spits back:

BazQuux
BarValue 1Value 2
MoreBarValue 3

--
"A long habit of not thinking a thing wrong, gives it a superficial appearance of being right." -- Thomas Paine
naChoZ