Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl -w
    use strict;
    ...
    my $xml;
    $xml->{'cgi'} = 'hai';
    print XMLout( $xml, keeproot => 1 );
    
  2. or download this
    my $xml = XMLin( 'file.txt', keeproot => 1 );
    print $xml->{'cgi'};