Help for this page

Select Code to Download


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