Help for this page

Select Code to Download


  1. or download this
     
    <?xml version="1.0" encoding="utf-8"?>
    ...
         </attribclass>
    </AttributeDatabase>
    
  2. or download this
        my $fh;
        open( $fh , "<", $arg{file}) or die;
        my $xml = XML::Simple->new(KeepRoot=>1) ;
        my $xml_data = $xml->XMLin($fh);
    
  3. or download this
    
        my $xml = XML::Simple->new(XMLDecl=>1,KeepRoot=>1) ;
        my $xml_data = $xml->XMLout($arg{data});
    
  4. or download this
    
    <?xml version='1.0' standalone='yes'?>
    ...
      </attribclass>
    </AttributeDatabase>