- or download this
<row>
<field name='column1'>Homer</field>
<field name='column2'>Homer Simpson</field>
<field name='column3'>Nuclear Systems Operation</field>
</row>
- or download this
<row>
<column1>Homer</column1>
<column2>Homer Simpson</column2>
<column3>Nuclear Systems Operation</column3>
</row>
- or download this
my $xml = new XML::Simple (KeyAttr=>'row');
my $data = $xml->XMLin("Employee.xml");
...
print "Department: ", $e->{column3}, "\n";
print "\n";
}