metaperl has asked for the wisdom of the Perl Monks concerning the following question:
Given this data:
How would you create this XML:@data = ( { age => 12, weight => 200 }, { age => 22, weight => 100 } );
<table> <tr><td>12</td><td>200</td></tr> <tr><td>22</td><td>100</td></tr> </table>
|
---|
Replies are listed 'Best First'. | |
---|---|
Re: XML::Twig - rendering a table of data
by eff_i_g (Curate) on Jun 08, 2009 at 14:26 UTC | |
Re: XML::Twig - rendering a table of data
by Anonymous Monk on Jun 08, 2009 at 14:12 UTC | |
by Anonymous Monk on Jun 08, 2009 at 15:00 UTC | |
Re: XML::Twig - rendering a table of data
by starX (Chaplain) on Jun 08, 2009 at 14:09 UTC |