Help for this page

Select Code to Download


  1. or download this
    use XML::Simple;
    
    my $ref = XMLin([<xml file or string>] [, <options>]);
    
    my $xml = XMLout($hashref [, <options>]);
    
  2. or download this
    my %hash;
    
    ... # fill the hash
    
    my $xml = XMLout (\%hash);